zapret/tpws/Makefile

13 lines
154 B
Makefile
Raw Normal View History

2018-09-13 10:12:58 +03:00
CC ?= gcc
2019-04-16 19:40:31 +03:00
CFLAGS += -s -O3
2019-05-09 19:03:50 +03:00
LIBS = -lz
2016-02-15 16:34:45 +03:00
SRC_FILES = *.c
all: tpws
tpws: $(SRC_FILES)
2018-09-13 10:12:58 +03:00
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
2016-02-15 16:34:45 +03:00
clean:
rm -f tpws *.o