]> git.wh0rd.org - ICEs.git/blame_incremental - 178979/Makefile
initial import
[ICEs.git] / 178979 / Makefile
... / ...
CommitLineData
1OBJCOPY ?= objcopy
2CFLAGS += -g -Wall -O0 -pipe
3
4all: test.dbg
5 $(OBJCOPY) --strip-debug test
6 $(OBJCOPY) --add-gnu-debuglink=test.dbg test
7
8test.dbg: test
9 $(OBJCOPY) --only-keep-debug test test.dbg
10
11clean:
12 rm -f test test.dbg
13
14.PHONY: all clean