From 2dd7ff18c38a0f690248879c0d0b3b93e2aab37e Mon Sep 17 00:00:00 2001 From: neauoire Date: Fri, 11 Aug 2023 08:25:33 -0700 Subject: [PATCH] (makefile) Added file deps to targets --- makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index 695520e..108e8c8 100644 --- a/makefile +++ b/makefile @@ -13,18 +13,18 @@ dest: rom: ./bin/uxnasm etc/polycat.tal bin/polycat.rom -uxnasm: +uxnasm: src/uxnasm.c cc ${RELEASE_flags} src/uxnasm.c -o bin/uxnasm -uxncli: +uxncli: ${CLI_src} src/uxncli.c gcc ${RELEASE_flags} ${CLI_src} src/uxncli.c -o bin/uxncli -uxn11: +uxn11: ${EMU_src} src/uxn11.c gcc ${RELEASE_flags} ${EMU_src} src/uxn11.c -lX11 -o bin/uxn11 -uxnasm-debug: +uxnasm-debug: src/uxnasm.c cc ${DEBUG_flags} src/uxnasm.c -o bin/uxnasm -uxncli-debug: +uxncli-debug: ${CLI_src} src/uxncli.c gcc ${DEBUG_flags} ${CLI_src} src/uxncli.c -o bin/uxncli -uxn11-debug: +uxn11-debug: ${EMU_src} src/uxn11.c gcc ${DEBUG_flags} ${EMU_src} src/uxn11.c -lX11 -o bin/uxn11 run: uxnasm uxncli uxn11 rom