unicon/Makefile

20 lines
269 B
Makefile
Raw Normal View History

2024-06-16 01:20:48 +00:00
all: unicon
WARNINGS = -Wall
DEBUG = -ggdb -fno-omit-frame-pointer
OPTIMIZE = -O2
OPTS = -lm
unicon: Makefile unicon.c
$(CC) -o $@ $(WARNINGS) $(DEBUG) $(OPTIMIZE) $(OPTS) unicon.c
clean:
rm -f unicon
install:
echo "Installing is not supported"
run:
./unicon