mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
11 lines
215 B
Makefile
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
|
|
|