Changeset 20816 for trunk/magic/remove/src/Makefile.simple
- Timestamp:
- Nov 21, 2008, 1:33:36 PM (17 years ago)
- Location:
- trunk/magic/remove/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Makefile.simple (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/magic/remove/src
- Property svn:ignore
-
old new 1 1 streaksremove 2 streaksreplace 3 streakscompare
-
- Property svn:ignore
-
trunk/magic/remove/src/Makefile.simple
r20580 r20816 1 1 # skeleton Makefile for streaksremove 2 # 3 # The intent is that these programs may be built against an 4 # IPP installation outside the IPP build enviornment. 2 5 3 OBJECTS= \ 6 COMMON_OBJECTS = \ 7 streaksio.o \ 8 streaksutil.o 9 10 REMOVE_OBJECTS= \ 11 ${COMMON_OBJECTS} \ 4 12 streaksremove.o \ 5 13 streaksastrom.o \ … … 8 16 Line.o 9 17 10 CFLAGS=`psmodules-config --cflags` -g -std=gnu99 18 REPLACE_OBJECTS= \ 19 ${COMMON_OBJECTS} \ 20 streaksreplace.o 21 22 COMPARE_OBJECTS= \ 23 ${COMMON_OBJECTS} \ 24 streakscompare.o 25 26 OPTFLAGS= -g 27 CFLAGS=`psmodules-config --cflags` -std=gnu99 ${OPTFLAGS} 11 28 LDFLAGS=`psmodules-config --libs` 12 29 13 streaksremove: ${OBJECTS} 30 PROGRAMS= streaksremove streaksreplace streakscompare 14 31 15 install: streaksremove 16 cp streaksremove $(PSCONFDIR)/$(PSCONFIG)/bin 17 chmod 755 $(PSCONFDIR)/$(PSCONFIG)/bin/streaksremove 32 all: ${PROGRAMS} 33 34 streaksremove: ${REMOVE_OBJECTS} 35 36 streaksreplace: ${REPLACE_OBJECTS} 37 38 streakscompare: ${COMPARE_OBJECTS} 39 40 install: ${PROGRAMS} 41 install -t $(PSCONFDIR)/$(PSCONFIG)/bin streaksremove 42 install -t $(PSCONFDIR)/$(PSCONFIG)/bin streaksreplace 43 install -t $(PSCONFDIR)/$(PSCONFIG)/bin streakscompare 18 44 19 45 clean: 20 rm -f *.o streaksremove46 rm -f *.o ${PROGRAMS} 21 47 22 48
Note:
See TracChangeset
for help on using the changeset viewer.
