init commit
This commit is contained in:
commit
9904bd2212
16 changed files with 846 additions and 0 deletions
25
http/Makefile
Normal file
25
http/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
CC=gcc
|
||||
CFLAGS=-Wall -Wextra
|
||||
|
||||
OBJS=test.o http.o net.o hashtable.o llist.o
|
||||
|
||||
all: test
|
||||
|
||||
test: $(OBJS)
|
||||
gcc -o $@ $^
|
||||
|
||||
test.o: test.c http.h
|
||||
|
||||
http.o: http.c http.h
|
||||
|
||||
net.o: net.c net.h
|
||||
|
||||
hashtable.o: hashtable.c hashtable.h
|
||||
|
||||
llist.o: llist.c llist.h
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS)
|
||||
rm -f test
|
||||
|
||||
.PHONY: all, clean
|
||||
Loading…
Reference in a new issue