diff options
author | JozanLeClerc <> | 2022-05-22 14:39:57 +0000 |
---|---|---|
committer | JozanLeClerc <> | 2022-05-22 14:39:57 +0000 |
commit | 27542bbc4a58f46b1fbd8037f9df85d11fdce44b (patch) | |
tree | d045099d28033b00a70fea90d5b98a05b2007176 /Makefile | |
parent | Good progress, now wait(2) (diff) | |
download | asm-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-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 # -------------- |