mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
13 lines
359 B
Makefile
13 lines
359 B
Makefile
.PHONY: all
|
|
all: hellosymbolfile
|
|
|
|
hellosymbolfile: hellosymbolfile.cpp function1.cpp
|
|
g++ -g -o hellosymbolfile hellosymbolfile.cpp function1.cpp
|
|
objcopy --only-keep-debug hellosymbolfile hellosymbolfile.dbg
|
|
strip --strip-debug --strip-unneeded hellosymbolfile
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellosymbolfile hellosymbolfile.dbg hellosymbolfile.o function1.o
|
|
|