summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-01-02 22:39:17 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-01-02 22:39:17 +0000
commit2373dabeb0a0bef66650b96cd28d4c5199904a7b (patch)
treea163d1d4abcd732d61551b2f0eef50cbcbf1a020 /bin
parent71611c76b44cca6fcb15ac9da42832fca9cb93a6 (diff)
downloadATCD-2373dabeb0a0bef66650b96cd28d4c5199904a7b.tar.gz
ChangeLogTag: Thu Jan 2 17:44:29 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'bin')
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd18
1 files changed, 17 insertions, 1 deletions
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd
index 2319bccfe0d..e32a4e55af9 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -158,6 +158,22 @@ else
CPPFLAGS += -DTAO_IDL_PREPROCESSOR=\"$(subst \,\,$(TAO_IDL_PREPROCESSOR))\"
endif
<%endif%>
+<%if(dllflags)%>
+ifeq ($(shared_libs),1)
+ifneq ($(SHLIB),)
+CPPFLAGS +=<%foreach(dllflags)%> -D<%dllflag%><%endfor%>
+endif
+endif
+<%endif%>
+<%if(libflags)%>
+ifeq ($(static_libs),1)
+ifneq ($(LIB),)
+CPPFLAGS +=<%foreach(libflags)%> -D<%libflag%><%endfor%>
+endif
+endif
+<%endif%>
+
+
<%if(libpaths)%>
LDFLAGS +=<%foreach(libpaths)%> -L<%libpath%><%endfor%>
<%endif%>
@@ -226,4 +242,4 @@ realclean: clean <%compclean%>
-$(RM) $(foreach ext, $(IDL_EXT), $(foreach file, $(IDL_FILES), $(file)$(ext)))
<%endif%>
-<%marker(bottom)%> \ No newline at end of file
+<%marker(bottom)%>