Show
Ignore:
Timestamp:
09/09/10 20:29:44 (21 months ago)
Author:
westram
Message:
  • compile ISLAND_HOPPING as C++ (merges [6794])
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ISLAND_HOPPING/Makefile

    r6814 r6815  
    11# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben 
    2 .SUFFIXES: .o .c .cpp .depend 
     2.SUFFIXES: .o .c .cxx .depend 
    33 
    44CPP_OBJECTS = island_hopping.o i-hopper.o align.o mem.o trnsprob.o 
     
    88.c.o: 
    99        $(ACC) $(cflags) -DARB -c $<  $(CPPINCLUDES) 
    10 .cpp.o: 
    11         $(CPP) $(cflags) -c $<  $(CPPINCLUDES) 
     10.cxx.o: 
     11        $(CPP) $(cflags) -DARB -c $<  $(CPPINCLUDES) 
    1212 
    1313clean: 
     
    2323.c.depend: 
    2424        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ 
    25 .cpp.depend: 
     25.cxx.depend: 
    2626        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ 
    2727