|
Revision 5734, 0.8 KB
(checked in by jgaeddert, 6 years ago)
|
|
automating cf idl python bindings for 0.6.2 release
|
| Line | |
|---|
| 1 | %SK.cpp %.h %DynSK.cpp : ../%.idl |
|---|
| 2 | @IDL@ -bcxx -Wba -Wbd=DynSK.cpp -Wbh=.h -Wbs=SK.cpp $< |
|---|
| 3 | cp $*.h ../../include/ossie |
|---|
| 4 | |
|---|
| 5 | install-data-hook : |
|---|
| 6 | touch $(DESTDIR)$(pkgincludedir)/*.idl |
|---|
| 7 | touch $(DESTDIR)$(pkgincludedir)/*.h |
|---|
| 8 | |
|---|
| 9 | AM_CXXFLAGS = -Wall -g |
|---|
| 10 | |
|---|
| 11 | BUILT_SOURCES = cfSK.cpp PortTypesSK.cpp StandardEventSK.cpp cfDynSK.cpp PortTypesDynSK.cpp StandardEventDynSK.cpp |
|---|
| 12 | CLEANFILES = cfSK.cpp PortTypesSK.cpp StandardEventSK.cpp cf.h PortTypes.h StandardEvent.h cfDynSK.cpp PortTypesDynSK.cpp StandardEventDynSK.cpp |
|---|
| 13 | |
|---|
| 14 | nodist_pkginclude_HEADERS = cf.h PortTypes.h StandardEvent.h |
|---|
| 15 | pkginclude_HEADERS = ../cf.idl ../PortTypes.idl ../StandardEvent.idl |
|---|
| 16 | |
|---|
| 17 | lib_LTLIBRARIES = libossieidl.la |
|---|
| 18 | nodist_libossieidl_la_SOURCES = cfSK.cpp PortTypesSK.cpp StandardEventSK.cpp cfDynSK.cpp PortTypesDynSK.cpp StandardEventDynSK.cpp |
|---|
| 19 | libossieidl_la_LDFLAGS = -version-info 0:4:0 |
|---|