diff --git a/Makefile b/Makefile index 21de661..3f3cf5c 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ all: country.sys +production: country.sys + $(CP) country.sys ..$(DIRSEP)bin + country.sys: country.asm - nasm -o $@ $< + nasm -o $@ country.asm clean: $(RM) country.sys + +clobber: clean