Sfoglia il codice sorgente

make help target

master
anon 10 mesi fa
parent
commit
f1419269b9
1 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. +8
    -1
      Makefile

+ 8
- 1
Makefile Vedi File

@@ -1,5 +1,6 @@
# note that this file does not properly handle options


PROGN:=probotic

CFLAGS:=-std=c99 -Wall -Wextra -Wpedantic -Wvla -Wshadow -Wundef
@@ -44,4 +45,10 @@ submodules:
clean:
-rm ${OBJ}

.PHONY: submodules clean
help:
@echo "Targets:"
@echo " all (default)"
@echo " submodules"
@echo " clean"

.PHONY: submodules clean help