ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/toolrules.mk
(Generate patch)

Comparing COMP/SCRAM/src/toolrules.mk (file contents):
Revision 1.7 by williamc, Fri Mar 26 18:10:36 1999 UTC vs.
Revision 1.11 by williamc, Tue Mar 30 17:43:32 1999 UTC

# Line 115 | Line 115 | Sbinaryobjects:=$(addsuffix .o,$(binfile
115          $(FC) -c $(CPPFLAGS) $(FFLAGS) $(FCDebugFlag) $< -o $@
116  
117   # -------------------------------------------------------------------------
118 # -- Executables
119 %.exe : $(Sbinaryobjects)
120        $(CXX) $(CXXFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)
118  
119   # -- Debug Exexcutables
120  
121 < #LDLIBS_D:=$(shell $(TOOL_HOME)/LibTypeExpand $(LDLIBS) "_d")
122 < %_d.exe : $(Sbinaryobjects)
123 <        $(CXX) $(CXXFLAGS) $(CXXDebugFlag) $(LDFLAGS) $< -o $@ \                        $(LDLIBS_D)
121 > lib_d:=$(shell $(TOOL_HOME)/LibTypeExpand "_d" $(lib))
122 > LDLIBS_D=$(addprefix -l,$(lib_d))
123 >
124 > %_d.exe :
125 >        $(CXX) $(CXXFLAGS) $(CXXDebugFlag) $(LDFLAGS) $< -o $@ $(LDLIBS_D)
126 >
127 > # -- Executables
128 > %.exe : %.o
129 >        $(CXX) $(CXXFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)
130  
131   realbins:=$(filter $(bintargets),$(notdir $(wildcard $(LOCALTOP)/$(INTbin)/*)))
132   clean ::
# Line 160 | Line 163 | $(shlibname)_d.$(SharedSuffix) : $(Sshar
163   # -- Standard Archive Libs
164   $(arlibname).$(ArchiveSuffix) : $(Sarchivelibobjs)
165          $(ArchiveCCTool)
166 <        mv $@ $(librarystore)/$@
166 >        @mv $@ $(librarystore)/$@
167  
168   # -- Debug Archive Libs
169   $(arlibname)_d.$(ArchiveSuffix) : $(Sarchivelibdebugobjs)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines