init commit

This commit is contained in:
Andrew Gundersen 2022-05-02 08:00:44 -05:00
commit 9904bd2212
16 changed files with 846 additions and 0 deletions

25
http/Makefile Normal file
View 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