Selaa lähdekoodia

make help target

master
anon 9 kuukautta sitten
vanhempi
commit
f1419269b9
1 muutettua tiedostoa jossa 8 lisäystä ja 1 poistoa
  1. +8
    -1
      Makefile

+ 8
- 1
Makefile Näytä tiedosto

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