summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <>2022-05-22 14:39:57 +0000
committerJozanLeClerc <>2022-05-22 14:39:57 +0000
commit27542bbc4a58f46b1fbd8037f9df85d11fdce44b (patch)
treed045099d28033b00a70fea90d5b98a05b2007176 /Makefile
parentGood progress, now wait(2) (diff)
downloadasm-cgi-example-27542bbc4a58f46b1fbd8037f9df85d11fdce44b.tar.gz
asm-cgi-example-27542bbc4a58f46b1fbd8037f9df85d11fdce44b.tar.bz2
asm-cgi-example-27542bbc4a58f46b1fbd8037f9df85d11fdce44b.tar.xz
asm-cgi-example-27542bbc4a58f46b1fbd8037f9df85d11fdce44b.tar.zst
asm-cgi-example-27542bbc4a58f46b1fbd8037f9df85d11fdce44b.zip
Its cool
FossilOrigin-Name: 25af2cffe75e6654fb19ea2df8cdcbc22e1e1b80
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ab1a625..e1e68da 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
# BSD Makefile
-default: all
+default: run
SRCS_DIR := src
INSTALL_DIR := /usr/local/www/jozan
@@ -55,7 +55,10 @@ re: clean all
install:
${CP} ${TARGET} ${INSTALL_DIR}
-.PHONY: all clean re install
+run: ${TARGET}
+ ./${TARGET}
+
+.PHONY: all clean re install run
# Files prefixes
# --------------