From d2c01d7b9d03c4ae01351d5a2aea9c45a7a4fd31 Mon Sep 17 00:00:00 2001 From: neauoire Date: Fri, 11 Aug 2023 08:27:24 -0700 Subject: [PATCH] (makefile) Added PHONY --- makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefile b/makefile index 108e8c8..040152a 100644 --- a/makefile +++ b/makefile @@ -5,6 +5,8 @@ EMU_src=${CLI_src} src/devices/screen.c src/devices/controller.c src/devices/mou RELEASE_flags=-DNDEBUG -O2 -g0 -s DEBUG_flags=-std=c89 -D_POSIX_C_SOURCE=199309L -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined +.PHONY: all debug dest rom run test install uninstall format clean + all: dest uxnasm uxncli uxn11 debug: dest uxnasm-debug uxncli-debug uxn11-debug