瀏覽代碼

make help target

master
anon 10 月之前
父節點
當前提交
f1419269b9
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. +8
    -1
      Makefile

+ 8
- 1
Makefile 查看文件

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