mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-08 11:50:00 -04:00

"scripts" is a more descriptive name than "tools", which sounds too similar to "programs".
13 lines
154 B
Makefile
13 lines
154 B
Makefile
SRC := $(wildcard */*.c)
|
|
EXE := $(SRC:.c=)
|
|
|
|
CFLAGS := -O2 -s
|
|
LDLIBS := -ldeflate
|
|
LDFLAGS := -L../..
|
|
CPPFLAGS := -I../..
|
|
|
|
all:$(EXE)
|
|
|
|
clean:
|
|
rm -f $(EXE)
|