From c6e8743063d4cdb859ce2ea744c4edc66925316b Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Mon, 19 Jul 2021 12:04:18 +0100 Subject: Added Readme --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit 1.4.1