Przeglądaj źródła

make help target

master
anon 10 miesięcy temu
rodzic
commit
f1419269b9
1 zmienionych plików z 8 dodań i 1 usunięć
  1. +8
    -1
      Makefile

+ 8
- 1
Makefile Wyświetl plik

@@ -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