zapret/tpws/Makefile
2016-03-07 17:48:23 +03:00

13 lines
134 B
Makefile

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