commit 2dd7ff1
neauoire
·
2023-08-11 15:25:33 +0000 UTC
parent 50f7a12
(makefile) Added file deps to targets
1 files changed,
+6,
-6
M
makefile
M
makefile
+6,
-6
1@@ -13,18 +13,18 @@ dest:
2 rom:
3 ./bin/uxnasm etc/polycat.tal bin/polycat.rom
4
5-uxnasm:
6+uxnasm: src/uxnasm.c
7 cc ${RELEASE_flags} src/uxnasm.c -o bin/uxnasm
8-uxncli:
9+uxncli: ${CLI_src} src/uxncli.c
10 gcc ${RELEASE_flags} ${CLI_src} src/uxncli.c -o bin/uxncli
11-uxn11:
12+uxn11: ${EMU_src} src/uxn11.c
13 gcc ${RELEASE_flags} ${EMU_src} src/uxn11.c -lX11 -o bin/uxn11
14
15-uxnasm-debug:
16+uxnasm-debug: src/uxnasm.c
17 cc ${DEBUG_flags} src/uxnasm.c -o bin/uxnasm
18-uxncli-debug:
19+uxncli-debug: ${CLI_src} src/uxncli.c
20 gcc ${DEBUG_flags} ${CLI_src} src/uxncli.c -o bin/uxncli
21-uxn11-debug:
22+uxn11-debug: ${EMU_src} src/uxn11.c
23 gcc ${DEBUG_flags} ${EMU_src} src/uxn11.c -lX11 -o bin/uxn11
24
25 run: uxnasm uxncli uxn11 rom