Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - SMAKE doesn't allow underscores in default rules?
Walter: Consider the following SMAKE fragment: .cpp{\path\with_underscore}.obj: $(CXX) -c -o"$ " $(CXXFLAGS) "$<" SMAKE complains about the "_" in "with_underscore". Is that standard behavior or an unexpected feature? If it's an unexpected feature, currently kills the STLport build process I'm attempting to complete. -scooter Jul 15 2004
Scott Michel <scottm aero.org> wrote in news:cd7iie$2naj$1 digitaldaemon.com:Walter: Consider the following SMAKE fragment: .cpp{\path\with_underscore}.obj: $(CXX) -c -o"$ " $(CXXFLAGS) "$<" SMAKE complains about the "_" in "with_underscore". Jul 16 2004
Włodzimierz Skiba wrote:Scott Michel <scottm aero.org> wrote in news:cd7iie$2naj$1 digitaldaemon.com:Walter: Consider the following SMAKE fragment: .cpp{\path\with_underscore}.obj: $(CXX) -c -o"$ " $(CXXFLAGS) "$<" SMAKE complains about the "_" in "with_underscore". Jul 16 2004
|