To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / Makefile @ 0:f89128a316e7
History | View | Annotate | Download (464 Bytes)
| 1 |
|
|---|---|
| 2 |
LDFLAGS += -lvamp-hostsdk -ldl |
| 3 |
CXXFLAGS += -Wall -Wextra |
| 4 |
|
| 5 |
OBJECTS := vamp-plugin-tester.o Tester.o Test.o TestStaticData.o |
| 6 |
|
| 7 |
vamp-plugin-tester: $(OBJECTS) |
| 8 |
|
| 9 |
clean: |
| 10 |
rm -f $(OBJECTS) |
| 11 |
|
| 12 |
distclean: clean |
| 13 |
rm -f *~ vamp-plugin-tester |
| 14 |
|
| 15 |
depend: |
| 16 |
makedepend -Y *.cpp *.h |
| 17 |
|
| 18 |
# DO NOT DELETE |
| 19 |
|
| 20 |
Test.o: Test.h |
| 21 |
TestStaticData.o: TestStaticData.h Test.h Tester.h |
| 22 |
Tester.o: Tester.h Test.h |
| 23 |
vamp-plugin-tester.o: Tester.h Test.h |
| 24 |
TestStaticData.o: Test.h Tester.h |
| 25 |
Tester.o: Test.h |