|
Revision 4354, 1.1 KB
(checked in by jgaeddert, 6 years ago)
|
|
cleaning up Makefile for soundCardPlayback
|
| Line | |
|---|
| 1 | %SK.cpp %.h : %.idl |
|---|
| 2 | @IDL@ @IDL_FLAGS@ -bcxx -Wbh=.h -Wbs=SK.cpp -Wbkeep_inc_path $< |
|---|
| 3 | |
|---|
| 4 | %.idl : |
|---|
| 5 | cp @SI_PATH@/standardinterfaces/$@ . |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | AM_CXXFLAGS = -Wall |
|---|
| 9 | |
|---|
| 10 | bin_PROGRAMS = soundCardPlayback |
|---|
| 11 | soundCardPlayback_SOURCES = \ |
|---|
| 12 | main.cpp \ |
|---|
| 13 | soundCardPlayback.h \ |
|---|
| 14 | soundCardPlayback.cpp \ |
|---|
| 15 | port_impl.cpp |
|---|
| 16 | |
|---|
| 17 | BUILT_SOURCES = \ |
|---|
| 18 | soundControlSK.cpp \ |
|---|
| 19 | complexShortSK.cpp \ |
|---|
| 20 | soundControl.idl \ |
|---|
| 21 | complexShort.idl |
|---|
| 22 | |
|---|
| 23 | CLEANFILES = \ |
|---|
| 24 | soundControlSK.cpp \ |
|---|
| 25 | soundControl.h \ |
|---|
| 26 | complexShortSK.cpp \ |
|---|
| 27 | complexShort.h \ |
|---|
| 28 | complexShort.idl \ |
|---|
| 29 | soundControl.idl |
|---|
| 30 | |
|---|
| 31 | nodist_soundCardPlayback_SOURCES = \ |
|---|
| 32 | soundControlSK.cpp \ |
|---|
| 33 | complexShortSK.cpp |
|---|
| 34 | |
|---|
| 35 | ossieName = soundCardPlayback |
|---|
| 36 | xmldir = $(prefix)/dev/xml/$(ossieName) |
|---|
| 37 | bindir = $(prefix)/dev/bin |
|---|
| 38 | |
|---|
| 39 | dist_xml_DATA = \ |
|---|
| 40 | soundCardPlayback.scd.xml \ |
|---|
| 41 | soundCardPlayback.spd.xml \ |
|---|
| 42 | soundCardPlayback.prf.xml |
|---|
| 43 | |
|---|