11 lines
90 B
Makefile
11 lines
90 B
Makefile
|
|
all:
|
|
gcc main.c -lncurses -o out/SecuSend
|
|
|
|
clean:
|
|
rm -rf out/*
|
|
|
|
run:
|
|
./out/SecuSend
|
|
|