- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
magic (modified) (1 prop)
-
magic/remove (modified) (1 prop)
-
magic/remove/src (modified) (1 prop)
-
magic/remove/src/Makefile.simple (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/magic
- Property svn:ignore
-
old new 1 1 magic 2 2 ssa-core-cpp 3 Makefile4 3 Makefile.bak
-
- Property svn:ignore
-
branches/simtest_nebulous_branches/magic/remove
-
Property svn:ignore
set to
configure
Makefile.in
Doxyfile
config.log
depcomp
config.status
config.guess
ltmain.sh
config.sub
autom4te.cache
libtool
missing
Makefile
aclocal.m4
install-sh
-
Property svn:ignore
set to
-
branches/simtest_nebulous_branches/magic/remove/src
- Property svn:ignore
-
old new 4 4 streakscompare 5 5 streaksrelease 6 makefile 6 Makefile 7 Makefile.in 8 config.h 9 .deps 10 streaksVersionDefinitions.h 11 config.h.in 12 stamp-h1
-
- Property svn:ignore
-
branches/simtest_nebulous_branches/magic/remove/src/Makefile.simple
r24761 r27840 10 10 11 11 REMOVE_OBJECTS= \ 12 ${COMMON_OBJECTS} \13 12 streaksremove.o \ 14 13 streaksextern.o \ 15 warpedpixels.o \14 diffedpixels.o \ 16 15 Line.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 … … 36 31 37 32 STREAKSFLAGS=-DSTREAKS_COMPRESS_OUTPUT=1 38 OPTFLAGS= -g -O2 33 OPTFLAGS= -g -O2 -Wall -Werror 39 34 #OPTFLAGS= -g 40 CFLAGS=`psmodules-config --cflags` -std=gnu99 ${OPTFLAGS} ${STREAKSFLAGS}41 #CFLAGS=`psmodules-config --cflags` -std=gnu99 ${OPTFLAGS}42 LDFLAGS=`psmodules-config --libs` 35 CFLAGS=`psmodules-config --cflags` `pslib-config --cflags` -std=gnu99 ${OPTFLAGS} ${STREAKSFLAGS} 36 #CFLAGS=`psmodules-config --cflags` `pslib-config --cflags` -std=gnu99 ${OPTFLAGS} 37 LDFLAGS=`psmodules-config --libs` `pslib-config --libs` 43 38 44 39 PROGRAMS= streaksremove streaksreplace streakscompare streaksrelease isdestreaked 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.
