summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/Misc/Makefile.main
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Service_Configurator/Misc/Makefile.main')
-rw-r--r--examples/Service_Configurator/Misc/Makefile.main36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/Service_Configurator/Misc/Makefile.main b/examples/Service_Configurator/Misc/Makefile.main
new file mode 100644
index 00000000000..45b30c3d30c
--- /dev/null
+++ b/examples/Service_Configurator/Misc/Makefile.main
@@ -0,0 +1,36 @@
+#----------------------------------------------------------------------------
+#
+# $Id$
+#
+# Makefile for executable main. Part of misc Service_Configurator examples
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# Local macros
+#----------------------------------------------------------------------------
+
+BIN = main
+
+FILES = main
+
+SRC = $(addsuffix .cpp,$(FILES))
+OBJ = $(addsuffix .o,$(FILES))
+
+LDLIBS += -lTimer
+
+BUILD = $(VBIN)
+
+#----------------------------------------------------------------------------
+# Include macros and targets
+#----------------------------------------------------------------------------
+
+include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
+
+#----------------------------------------------------------------------------
+# Local targets
+#----------------------------------------------------------------------------