proxlib/Makefile
Kevin Jerebica 5dcc4c8bf7 proxy: finish re-writing all proxy states
Also fix some new bugs that showed up. Proxying now works with HTTP websites
but only the ones which serve their content through the content-length HTTP
header field
2024-09-12 19:31:01 +02:00

17 lines
265 B
Makefile

CC=bear --append -- gcc
CFLAGS=-g3
CFILES=proxlib.c
CFILES_PARSLIB=parslib/parslib.final.o
OUT=proxlib
all: proxlib
proxlib: $(CFILES) $(CFILES_PARSLIB)
$(CC) $(CFLAGS) -o $(OUT) $^
clean:
rm -f $(OUT)
tar:
tar -cvzf proxlib.tgz $(CFILES) README Makefile