Changeset 2592


Ignore:
Timestamp:
2001-06-19T17:33:04+12:00 (23 years ago)
Author:
jrm21
Message:

We need to explicitly use $(CXX) from configure for the c++ compiler, and
specify the link command. (otherwise fails under darwin).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/phind/generate/Makefile.in

    r2553 r2592  
    2727
    2828CC = @CC@
    29 CCFLAGS = -Wall @CFLAGS@
     29CFLAGS = @CFLAGS@
     30CXX = @CXX@
     31CXXFLAGS = @CXXFLAGS@
     32
    3033DEFS = @DEFS@
    3134RANLIB = @RANLIB@
     
    4649.SUFFIXES: .cpp .o
    4750.cpp.o:
    48     $(COMPILE) $<
     51    $(CXX) -c $(DEFS) $(INCLUDES) $(CXXFLAGS) $<
    4952
    5053
     
    7275# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
    7376
    74 suffix : $(OBJECTS) suffix.cpp
     77suffix : $(OBJECTS) suffix.o
     78    $(CXX) $(LDFLAGS) -o $@ $(OBJECTS) suffix.o
Note: See TracChangeset for help on using the changeset viewer.