1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-01-16 11:35:15 +00:00
zapret/tpws/Makefile
2016-02-15 16:34:45 +03:00

15 lines
147 B
Makefile

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