Skip to content

Commit

Permalink
Build: Add production target
Browse files Browse the repository at this point in the history
So that a superior make or script can call us to install.
  • Loading branch information
andrewbird committed Feb 11, 2024
1 parent a170a55 commit 8038a30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@

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

0 comments on commit 8038a30

Please sign in to comment.