Skip to content

Commit

Permalink
add makefile (for realz)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoconlechuga committed Aug 8, 2018
1 parent 38ccf24 commit bc96d89
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SRC := src/cesium.asm

FLAGS_ENGLISH := -i 'config_english := 1'
FLAGS_FRENCH := -i 'config_english := 0'
BIN_ENGLISH := cesium.8xp
BIN_FRENCH := cesium_french.8xp

all: english french

english:
fasmg $(FLAGS_ENGLISH) $(SRC) $(BIN_ENGLISH)

french:
fasmg $(FLAGS_FRENCH) $(SRC) $(BIN_FRENCH)

.PHONY: all english french

0 comments on commit bc96d89

Please sign in to comment.