mirror of
https://github.com/bol-van/zapret.git
synced 2025-04-20 05:52:57 +03:00
13 lines
163 B
Makefile
13 lines
163 B
Makefile
CC ?= gcc
|
|
CFLAGS += -std=c99 -s -O3
|
|
LIBS = -lz
|
|
SRC_FILES = *.c
|
|
|
|
all: tpws
|
|
|
|
tpws: $(SRC_FILES)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f tpws *.o
|