Yet Another Intercepting Proxy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
422 B

# 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)