Kevin Jerebica
5dcc4c8bf7
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
17 lines
265 B
Makefile
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
|