mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
[Imported from Perforce change 8374 at 2006-12-01 20:33:23] Subversion-branch: /trunk/polyorb Subversion-revision: 35972
41 lines
884 B
Makefile
41 lines
884 B
Makefile
TESTS= polyorb-test-no_tasking \
|
|
polyorb-test-thread_pool \
|
|
polyorb-test-no_tasking_poa \
|
|
polyorb-test-thread_pool_poa
|
|
|
|
poly_exe=$(TESTS)
|
|
|
|
all: $(TESTS)
|
|
|
|
all-local: $(TESTS)
|
|
|
|
$(TESTS): force
|
|
$(GNATMAKE_FOR_TARGET) \
|
|
-I$(srcdir) \
|
|
-I$(srcdir)/../../src \
|
|
-I$(srcdir)/../../src/corba \
|
|
-I$(srcdir)/../../src/giop \
|
|
-I$(srcdir)/../../src/giop/iiop \
|
|
-I$(srcdir)/../../src/giop/diop \
|
|
-I$(srcdir)/../../src/giop/miop \
|
|
-I$(srcdir)/../../src/soap \
|
|
-I$(srcdir)/../../src/web_common \
|
|
-I$(srcdir)/../../src/srp \
|
|
-I../../src \
|
|
-I../../src/corba \
|
|
-I../../src/giop \
|
|
-I../../src/soap \
|
|
-I../../src/web_common \
|
|
-I../../src/srp \
|
|
$(XMLADA_INCS) \
|
|
-m $@ \
|
|
-cargs $(GNATFLAGS) -bargs $(BARGS) \
|
|
-largs $(LDFLAGS) --LINK=$(LINKER) \
|
|
$(POLYORB_LIBS) $(XMLADA_LIBS)
|
|
|
|
force:
|
|
(cd ../../src && $(MAKE) all)
|
|
clean:
|
|
|
|
include $(srcdir)/../Makefile.common
|