diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-17 14:41:20 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-17 14:41:20 +0200 |
commit | 396a5d42f979c5200532937f3428d68e049b1298 (patch) | |
tree | 34d6fd297fba43d196adb0d386b9a602c6081a95 /Makefile | |
parent | Makefile fix (diff) | |
download | lowbat-bsd-396a5d42f979c5200532937f3428d68e049b1298.tar.gz lowbat-bsd-396a5d42f979c5200532937f3428d68e049b1298.tar.bz2 lowbat-bsd-396a5d42f979c5200532937f3428d68e049b1298.tar.xz lowbat-bsd-396a5d42f979c5200532937f3428d68e049b1298.tar.zst lowbat-bsd-396a5d42f979c5200532937f3428d68e049b1298.zip |
Fetch percent is ok
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -1,3 +1,15 @@ +########################################################################################## +#* *# +#* File : Makefile /_________/ *# +#* Author : Joe | *# +#* Date : 04/2020 | *# +#* Info : BSD Makefile | *# +#* / | *# +#* \ / *# +#* \_____/ *# +#* *# +########################################################################################## + default: all SHELL := /bin/sh @@ -61,14 +73,7 @@ depend: all: depend ${TARGET} clean: - ${RM} ${C_OBJS} - ${RM} ${A_OBJS} - ${RM} ${TARGET}.core - ${RM} .depend - ${RM} .depend.tmp - -fclean: clean - ${RM} ${TARGET} + ${RM} ${C_OBJS} ${A_OBJS} ${TARGET}.core .depend .depend.tmp ${TARGET} re: fclean all |