Changeset 26247
- Timestamp:
- Nov 22, 2009, 1:31:30 PM (17 years ago)
- Location:
- branches/eam_branches/20091113/magic
- Files:
-
- 1 added
- 3 edited
-
Makefile (added)
-
Makefile.in (modified) (1 diff)
-
configure.tcsh (modified) (2 diffs)
-
remove/src/Makefile.simple (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20091113/magic/Makefile.in
r25082 r26247 32 32 REMOVE = remove/src 33 33 34 REMOVE_PROGRAMS = \ 35 $(REMOVE)/isdestreaked \ 36 $(REMOVE)/streakscompare \ 37 $(REMOVE)/streaksrelease \ 38 $(REMOVE)/streaksremove \ 39 $(REMOVE)/streaksreplace 40 41 remove: $(REMOVE_PROGRAMS) 42 43 $(REMOVE_PROGRAMS): 34 remove: FORCE 44 35 @cd $(REMOVE) && make -f Makefile.simple all 45 36 46 37 remove.install: remove 47 38 @cd $(REMOVE) && make -f Makefile.simple install 39 40 FORCE: -
branches/eam_branches/20091113/magic/configure.tcsh
r25431 r26247 105 105 echo 106 106 107 # the config.tools fixconf operations below interpolate values in Makefile 108 if (-e Makefile) mv Makefile Makefile.bak 109 cp -f Makefile.in Makefile 107 # we do not actually need to modify the Makefile 110 108 109 # # the config.tools fixconf operations below interpolate values in Makefile 110 # if (-e Makefile) mv Makefile Makefile.bak 111 # cp -f Makefile.in Makefile 112 # 111 113 # BINDIR holds the output binary files 112 114 if ("$bindir" == "") then … … 115 117 endif 116 118 set bindir = `./config.tools fixpath $bindir` 117 ./config.tools fixconf @BINDIR@ $bindir118 echo BINDIR $bindir119 119 120 # MANDIR (DESTMAN) holds the output man pages 121 if ("$mandir" == "") then 122 set mandir = $prefix/man 123 endif 124 set mandir = `./config.tools fixpath $mandir` 125 ./config.tools fixconf @MANDIR@ $mandir 126 echo DESTMAN $mandir 120 # ./config.tools fixconf @BINDIR@ $bindir 121 # echo BINDIR $bindir 122 # 123 # # MANDIR (DESTMAN) holds the output man pages 124 # if ("$mandir" == "") then 125 # set mandir = $prefix/man 126 # endif 127 # set mandir = `./config.tools fixpath $mandir` 128 # ./config.tools fixconf @MANDIR@ $mandir 129 # echo DESTMAN $mandir 127 130 128 131 echo "" -
branches/eam_branches/20091113/magic/remove/src/Makefile.simple
r25082 r26247 10 10 11 11 REMOVE_OBJECTS= \ 12 ${COMMON_OBJECTS} \13 12 streaksremove.o \ 14 13 streaksextern.o \ … … 17 16 18 17 REPLACE_OBJECTS= \ 19 ${COMMON_OBJECTS} \20 18 streaksreplace.o 21 19 22 20 COMPARE_OBJECTS= \ 23 ${COMMON_OBJECTS} \24 21 streakscompare.o 25 22 26 23 RELEASE_OBJECTS= \ 27 ${COMMON_OBJECTS} \28 24 streaksrelease.o 29 25 30 26 ISDESTREAKED_OBJECTS= \ 31 ${COMMON_OBJECTS} \32 27 isdestreaked.o 33 28 … … 45 40 HEADERS=Line.h streaksastrom.h streaksextern.h streaksio.h streaksremove.h 46 41 47 all: ${PROGRAMS}42 all: ${PROGRAMS} 48 43 49 ${REMOVE_OBJECTS}: ${HEADERS} 50 streaksremove: ${REMOVE_OBJECTS} 44 # programs all depend on the common objects and the common headers 45 PROGRAM_OBJECTS = \ 46 ${REMOVE_OBJECTS} \ 47 ${REPLACE_OBJECTS} \ 48 ${COMPARE_OBJECTS} \ 49 ${RELEASE_OBJECTS} \ 50 ${ISDESTREAKED_OBJECTS} 51 51 52 streaksreplace: ${REPLACE_OBJECTS}52 ${COMMON_OBJECTS}: ${HEADERS} 53 53 54 streakscompare: ${COMPARE_OBJECTS}54 ${PROGRAM_OBJECTS}: ${HEADERS} ${COMMON_OBJECTS} 55 55 56 streaksre lease: ${RELEASE_OBJECTS}56 streaksremove: ${REMOVE_OBJECTS} ${COMMON_OBJECTS} 57 57 58 isdestreaked: ${ISDESTREAKED_OBJECTS} 58 streaksreplace: ${REPLACE_OBJECTS} ${COMMON_OBJECTS} 59 60 streakscompare: ${COMPARE_OBJECTS} ${COMMON_OBJECTS} 61 62 streaksrelease: ${RELEASE_OBJECTS} ${COMMON_OBJECTS} 63 64 isdestreaked: ${ISDESTREAKED_OBJECTS} ${COMMON_OBJECTS} 59 65 60 66
Note:
See TracChangeset
for help on using the changeset viewer.
