diff options
-rw-r--r-- | asm/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/asm/Makefile b/asm/Makefile index 410fa8f..f4e1bd9 100644 --- a/asm/Makefile +++ b/asm/Makefile @@ -15,3 +15,8 @@ rich4.exe: $(OBJS) %.obj: %.c $(CC) $(CFLAGS) -c -o $@ $< + +.PHONY: clean + +clean: + rm -f rich4.exe $(OBJS) |