mirror of
https://github.com/bol-van/zapret.git
synced 2024-12-02 14:40:52 +03:00
13 lines
134 B
Makefile
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
|