Files
seer/tests/helloucurses/Makefile
T
2025-01-25 11:00:09 -06:00

11 lines
215 B
Makefile

.PHONY: all
all: helloucurses
helloucurses: helloucurses.c
gcc-13 -g -o helloucurses helloucurses.c -I/usr/local/uCurses -L /usr/local/lib64 -lm -luCurses
.PHONY: clean
clean:
rm -f helloucurses helloucurses.o