Pavel Labath f0537825a2 Fix clean rule for a makefile
The test was failing on windows because the clean rule (which is executed even if the test is
skipped) returned an error there.

llvm-svn: 265140
2016-04-01 12:59:37 +00:00

17 lines
318 B
Makefile

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 $(wildcard *.dSYM)
include $(LEVEL)/Makefile.rules