serpent/Makefile

19 lines
276 B
Makefile
Raw Normal View History

2023-11-19 23:43:05 +00:00
all: serpent
WARNINGS = -Wall
DEBUG = -ggdb -fno-omit-frame-pointer -lncurses
2023-11-19 23:43:05 +00:00
OPTIMIZE = -O2
serpent: Makefile serpent.c serpent.h
2023-11-19 23:43:05 +00:00
$(CC) -o $@ $(WARNINGS) $(DEBUG) $(OPTIMIZE) serpent.c
clean:
rm -f serpent
install:
echo "Installing is not supported"
run:
./serpent