brintos

brintos / llvm-project-archived public Read only

0
0
Text · 322 B · a1b84c1 Raw
17 lines · plain
1C_SOURCES := main.c2 3all: dirsymlink4 5dirreal: a.out6	$(RM) -r $@7	mkdir $@8	$(OBJCOPY) --only-keep-debug $< $@/stripped.debug9	$(OBJCOPY) --strip-all --add-gnu-debuglink=$@/stripped.debug $< $@/stripped.out10 11dirsymlink: dirreal12	$(RM) -r $@13	mkdir $@14	ln -s ../$</stripped.out $@/stripped.symlink15 16include Makefile.rules17