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 :: |
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) |