about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 12:04:18 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 12:04:18 +0100
commitc6e8743063d4cdb859ce2ea744c4edc66925316b (patch)
tree16adc35a003bf8aa3adaa19966d95efd6c455f21 /Makefile
parentInitial commit (diff)
downloadCHIP8-Emulator-c6e8743063d4cdb859ce2ea744c4edc66925316b.tar.gz
CHIP8-Emulator-c6e8743063d4cdb859ce2ea744c4edc66925316b.tar.bz2
CHIP8-Emulator-c6e8743063d4cdb859ce2ea744c4edc66925316b.zip
Added Readme
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1346c94..d13a7ff 100644
--- a/Makefile
+++ b/Makefile
@@ -3,11 +3,11 @@ CFLAGS=-g -Wall -I.
 
 all: chip8_emulator
 
-%.o: %.c %.h
+%.o: %.c
 	$(CC) $(CFLAGS) -c $^
 
 chip8_emulator: emulator.o main.c
 	$(CC) $(CFLAGS) -o $@ $^
 
-clean: chip8_emulator
-	rm *.o $@
+clean:
+	rm *.o chip8_emulator