mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
14 lines
223 B
Makefile
14 lines
223 B
Makefile
|
|
default: all
|
|
|
|
all: termmines anyptracer
|
|
|
|
termmines: termmines.c
|
|
$(CC) -O2 -o $@ $^ -lncurses
|
|
strip -Kmain -K_main $@
|
|
|
|
termmines-dev: termmines.c
|
|
$(CC) -O0 -g -o $@ $^ -lncurses
|
|
|
|
anyptracer: anyptracer.c
|
|
$(CC) -o $@ $^
|