Updated README and pruned Makefile
This commit is contained in:
commit
dfb66e84d8
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ config.h
|
||||
*.sqlite
|
||||
build.sh
|
||||
Makefile
|
||||
install
|
||||
|
7
Makefile
7
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
|
||||
@ -27,9 +28,7 @@ ifeq (${ENABLE_SSL},1)
|
||||
LDLIBS += -lssl -lcrypto
|
||||
endif
|
||||
|
||||
all: include/config.h ${PROGN}
|
||||
|
||||
${PROGN}: ${HDR} ${SRC}
|
||||
${PROGN}: include/config.h ${HDR} ${SRC}
|
||||
${LINK.c} -pipe ${LIB} src/unity.c -o $@ ${LDLIBS}
|
||||
|
||||
# do nothing but update them...
|
||||
@ -41,4 +40,4 @@ include/config.h: config.mk.h
|
||||
clean:
|
||||
-rm ${OBJ}
|
||||
|
||||
.PHONY: all submodules clean
|
||||
.PHONY: clean
|
||||
|
Reference in New Issue
Block a user