proxlib/Makefile

15 lines
256 B
Makefile
Raw Normal View History

2024-08-02 16:38:13 +00:00
CC=bear --append -- gcc
2024-07-31 14:14:50 +00:00
CFLAGS= -g3 -Wall -Werror
2024-09-04 09:10:08 +00:00
all: proxlib
2024-09-04 09:10:08 +00:00
proxy: proxlib.c
$(CC) $(CFLAGS) -o proxlib.o -c proxlib.c
$(CC) $(CFLAGS) -o proxlib proxlib.o
clean:
2024-09-04 09:10:08 +00:00
rm -f proxlib *.o
tar:
2024-09-04 09:10:08 +00:00
tar -cvzf proxlib.tgz proxlib.c proxlib.h README Makefile