serpent/Makefile
2023-11-19 19:43:05 -04:00

18 lines
256 B
Makefile

all: serpent
WARNINGS = -Wall
DEBUG = -ggdb -fno-omit-frame-pointer
OPTIMIZE = -O2
serpent: Makefile serpent.c
$(CC) -o $@ $(WARNINGS) $(DEBUG) $(OPTIMIZE) serpent.c
clean:
rm -f serpent
install:
echo "Installing is not supported"
run:
./serpent