blob: dc7c06fddfe861e4cc2f34b6f582eddb10afd165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LEVEL := ../../make
C_SOURCES := a.c
all: compressed.out compressed.gnu.out
compressed.out: a.out
$(OBJCOPY) --compress-debug-sections=zlib $< $@
compressed.gnu.out: a.out
$(OBJCOPY) --compress-debug-sections=zlib-gnu $< $@
include $(LEVEL)/Makefile.rules
clean::
$(RM) -f a.o main compressed.out compressed.gnu.out
|