I have done some work on opening a socket and waiting for a connection. This can be read line by line and I have started a request struct that it will accept. Also started on some docs. Not much is yet working. I am going to start learning µnit for unit tests: https://nemequ.github.io/munit/
28 lines
422 B
Makefile
28 lines
422 B
Makefile
# This was stolen from here: https://avikdas.com/2019/12/16/makefiles-for-c-cpp-projects.html
|
|
|
|
CFILES = $(wildcard src/*.c)
|
|
OBJFILES = $(CFILES:.c=.o)
|
|
OUT = proxy
|
|
CFLAGS = -Wall
|
|
LDLIBS = -lsqlite3
|
|
CC = gcc
|
|
|
|
|
|
.PHONY: default
|
|
default: $(OUT)
|
|
|
|
|
|
.PHONY: run
|
|
run: $(OUT)
|
|
./$(OUT)
|
|
|
|
$(OUT): $(OBJFILES)
|
|
$(CC) -o $@ $^ $(LDLIBS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $^
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(OBJFILES) $(OUT)
|