diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile b/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile new file mode 100644 index 0000000000000..329ceabeea97d --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile @@ -0,0 +1,12 @@ +LEVEL = ../../../make + +myclass.o: myclass.h myclass.m + $(CC) myclass.m -c -o myclass.o + +repro: myclass.o repro.m + $(CC) -g -O0 myclass.o repro.m -framework Foundation + +cleanup: + rm -r myclass.o + +include $(LEVEL)/Makefile.rules |