blob: 3fd14a74bf360691185f1ef08790e7f3da2f55b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LEVEL = ../../make
C_SOURCES := main.c
all: dirsymlink
dirreal: a.out
$(RM) -r $@
mkdir $@
$(OBJCOPY) --only-keep-debug $< $@/stripped.debug
$(OBJCOPY) --strip-all --add-gnu-debuglink=$@/stripped.debug $< $@/stripped.out
dirsymlink: dirreal
$(RM) -r $@
mkdir $@
ln -s ../$</stripped.out $@/stripped.symlink
clean::
$(RM) -r dirreal dirsymlink
include $(LEVEL)/Makefile.rules
|