blob: 01392a8140ab2f7dacc04725e35f2d6296dfaee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LEVEL = ../../../make
OBJC_SOURCES := static.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
default: a.out.stripped
a.out.stripped: a.out.dSYM
strip -o a.out.stripped a.out
ln -sf a.out.dSYM a.out.stripped.dSYM
clean::
rm -f a.out.stripped
rm -rf *.dSYM
include $(LEVEL)/Makefile.rules
|