diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-08-04 02:04:08 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-08-04 02:04:08 +0000 |
commit | 3cb658e8d46c1a95fd0b184e4a1478b216b5220e (patch) | |
tree | 1810fb24831677b9b8910e623c092945e69e860f /TAO/orbsvcs/Scheduling_Service | |
parent | eacceeb6cbc445be3eda6dee9a8801502de02bc8 (diff) | |
download | ATCD-3cb658e8d46c1a95fd0b184e4a1478b216b5220e.tar.gz |
ChangeLogTag: Tue Aug 3 17:08:38 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/orbsvcs/Scheduling_Service')
-rw-r--r-- | TAO/orbsvcs/Scheduling_Service/Makefile.am | 57 |
1 files changed, 32 insertions, 25 deletions
diff --git a/TAO/orbsvcs/Scheduling_Service/Makefile.am b/TAO/orbsvcs/Scheduling_Service/Makefile.am index a1c9126feca..503520aaf4a 100644 --- a/TAO/orbsvcs/Scheduling_Service/Makefile.am +++ b/TAO/orbsvcs/Scheduling_Service/Makefile.am @@ -1,35 +1,42 @@ -##--------------------------------------------------------------------------- -## $Id$ -## -## Makefile for TAO's Scheduling Service -## -##--------------------------------------------------------------------------- - -## ## Process this file with automake to create Makefile.in -## -## The number in AUTOMAKE_OPTIONS is the minimum required version automake -## needed to process this file. -AUTOMAKE_OPTIONS = 1.4 +ACE_ROOT = $(top_srcdir)/.. +ACE_BUILDDIR = $(top_builddir)/.. +TAO_ROOT = $(top_srcdir) +TAO_BUILDDIR = $(top_builddir) -INCLUDES = -I$(top_builddir) -I$(top_srcdir) +## Makefile.Scheduling_Service.am -bin_PROGRAMS = Scheduling_Service +noinst_PROGRAMS = Scheduling_Service -Scheduling_Service_LDADD = \ - $(top_builddir)/ace/libACE.la $(top_builddir)/TAO/tao/libTAO.la +Scheduling_Service_CPPFLAGS = \ + -I$(ACE_ROOT) \ + -I$(ACE_BUILDDIR) \ + -I$(TAO_ROOT) \ + -I$(TAO_BUILDDIR) \ + -I$(TAO_ROOT)/orbsvcs/orbsvcs Scheduling_Service_SOURCES = \ - Scheduling_Service.cpp - -## noinst_HEADERS = - -## EXTRA_DIST = README + Scheduling_Service.cpp -## Clean up some additional files/directories possibly created during -## the configure script tests. +Scheduling_Service_LDADD = \ + $(TAO_BUILDDIR)/orbsvcs/orbsvcs/libTAO_RTSched.la \ + $(TAO_BUILDDIR)/orbsvcs/orbsvcs/libTAO_CosNaming.la \ + $(TAO_BUILDDIR)/orbsvcs/orbsvcs/libTAO_Svc_Utils.la \ + $(TAO_BUILDDIR)/tao/libTAO_Messaging.la \ + $(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \ + $(TAO_BUILDDIR)/tao/libTAO_IORInterceptor.la \ + $(TAO_BUILDDIR)/tao/libTAO_ObjRefTemplate.la \ + $(TAO_BUILDDIR)/tao/libTAO_Valuetype.la \ + $(TAO_BUILDDIR)/tao/libTAO_IORTable.la \ + $(TAO_BUILDDIR)/tao/libTAO.la \ + $(ACE_BUILDDIR)/ace/libACE.la + +noinst_HEADERS = \ + Scheduling_Service.h + +## Clean up template repositories, etc. clean-local: -rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core - -rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations - + -rm -f gcctemp.c gcctemp so_locations + -rm -rf ptrepository SunWS_cache Templates.DB |