mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-13 09:24:16 -09:00
15 lines
223 B
Makefile
15 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 $@ $^
|