zapret/tpws/Makefile

13 lines
163 B
Makefile
Raw Normal View History

2020-01-02 13:10:28 +03:00
CC ?= gcc
CFLAGS += -std=c99 -s -O3
LIBS = -lz
2020-01-02 13:10:28 +03:00
SRC_FILES = *.c
all: tpws
tpws: $(SRC_FILES)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
clean:
rm -f tpws *.o