1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-05-16 10:32:58 +03:00
2018-09-13 10:12:58 +03:00

13 lines
147 B
Makefile

CC ?= gcc
CFLAGS += -s
LIBS =
SRC_FILES = *.c
all: tpws
tpws: $(SRC_FILES)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
clean:
rm -f tpws *.o