Changeset 6815
- Timestamp:
- 09/09/10 20:29:44 (17 months ago)
- Location:
- trunk/ISLAND_HOPPING
- Files:
-
- 5 removed
- 1 modified
- 5 copied
-
Makefile (modified) (3 diffs)
-
align.c (deleted)
-
align.cxx (copied) (copied from branches/refactor/ISLAND_HOPPING/align.cxx)
-
i-hopper.c (deleted)
-
i-hopper.cxx (copied) (copied from branches/refactor/ISLAND_HOPPING/i-hopper.cxx)
-
island_hopping.cpp (deleted)
-
island_hopping.cxx (copied) (copied from branches/refactor/ISLAND_HOPPING/island_hopping.cxx)
-
mem.c (deleted)
-
mem.cxx (copied) (copied from branches/refactor/ISLAND_HOPPING/mem.cxx)
-
trnsprob.c (deleted)
-
trnsprob.cxx (copied) (copied from branches/refactor/ISLAND_HOPPING/trnsprob.cxx)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ISLAND_HOPPING/Makefile
r6814 r6815 1 1 # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben 2 .SUFFIXES: .o .c .c pp.depend2 .SUFFIXES: .o .c .cxx .depend 3 3 4 4 CPP_OBJECTS = island_hopping.o i-hopper.o align.o mem.o trnsprob.o … … 8 8 .c.o: 9 9 $(ACC) $(cflags) -DARB -c $< $(CPPINCLUDES) 10 .c pp.o:11 $(CPP) $(cflags) - c $< $(CPPINCLUDES)10 .cxx.o: 11 $(CPP) $(cflags) -DARB -c $< $(CPPINCLUDES) 12 12 13 13 clean: … … 23 23 .c.depend: 24 24 $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ 25 .c pp.depend:25 .cxx.depend: 26 26 $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ 27 27
