add Makefile, cleanup for -std=c99
This commit is contained in:
parent
76384a3240
commit
e29419bc18
3 changed files with 49 additions and 29 deletions
11
test/Makefile
Normal file
11
test/Makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
CFLAGS = -g -Wall -W -std=c99 -pedantic
|
||||
TARGETS = bounce generateload radius
|
||||
|
||||
all: $(TARGETS)
|
||||
clean:
|
||||
rm -f $(TARGETS)
|
||||
|
||||
../md5.o: ../md5.c ../md5.h
|
||||
$(MAKE) -C .. md5.o
|
||||
|
||||
radius: radius.c ../md5.o
|
||||
Loading…
Add table
Add a link
Reference in a new issue