Skip to content

Commit

Permalink
Merge pull request #8 from andrewbird/prd
Browse files Browse the repository at this point in the history
Build: Add production target
  • Loading branch information
andrewbird authored Feb 11, 2024
2 parents a170a55 + 51ff261 commit 13587a3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 13587a3

Please sign in to comment.