Skip to content

Commit 546cb1f

Browse files
committed
Drop ippevepcl and ippeveps from tools Makefile.
1 parent c2f211e commit 546cb1f

1 file changed

Lines changed: 5 additions & 25 deletions

File tree

tools/Makefile

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,12 @@ LIBOBJS = \
3333
OBJS = \
3434
$(LIBOBJS) \
3535
ipp-options.o \
36-
ippevepcl.o \
3736
ippeveprinter.o \
38-
ippeveps.o \
3937
ippfind.o \
4038
ipptool.o \
4139
ipptransform.o
4240
IPPTOOLS = \
43-
ippevepcl \
4441
ippeveprinter \
45-
ippeveps \
4642
ippfind \
4743
ipptool \
4844
ipptransform
@@ -99,6 +95,10 @@ install: all
9995
for file in $(IPPTOOLS); do \
10096
$(INSTALL_BIN) $$file $(BUILDROOT)$(bindir); \
10197
done
98+
for file in ippevepcl ippeveps; do \
99+
$(RM) $(BUILDROOT)$(bindir)/$$file; \
100+
$(LN) ipptransform $(BUILDROOT)$(bindir)/$$file; \
101+
done
102102
if test "x$(SYMROOT)" != "x"; then \
103103
echo "Copying debug symbols to $(SYMROOT)..."; \
104104
$(INSTALL_DIR) $(SYMROOT); \
@@ -115,7 +115,7 @@ install: all
115115

116116
uninstall:
117117
echo "Uninstalling IPP tools from $(BUILDROOT)$(bindir)..."
118-
for file in $(IPPTOOLS); do \
118+
for file in $(IPPTOOLS) ippevepcl ippeveps; do \
119119
$(RM) $(BUILDROOT)$(bindir)/$$file; \
120120
done
121121
-$(RMDIR) $(BUILDROOT)$(bindir)
@@ -156,26 +156,6 @@ ippeveprinter-static: ippeveprinter.o ../cups/$(LIBCUPS_STATIC)
156156
$(CODE_SIGN) $(CSFLAGS) $@
157157

158158

159-
#
160-
# ippevepcl
161-
#
162-
163-
ippevepcl: ippevepcl.o ../cups/$(LIBCUPS)
164-
echo Linking $@...
165-
$(CC) $(LDFLAGS) $(OPTIM) -o $@ ippevepcl.o $(LINKCUPS) $(LIBS)
166-
$(CODE_SIGN) $(CSFLAGS) $@
167-
168-
169-
#
170-
# ippeveps
171-
#
172-
173-
ippeveps: ippeveps.o ../cups/$(LIBCUPS)
174-
echo Linking $@...
175-
$(CC) $(LDFLAGS) $(OPTIM) -o $@ ippeveps.o $(LINKCUPS) $(LIBS)
176-
$(CODE_SIGN) $(CSFLAGS) $@
177-
178-
179159
#
180160
# ippfind
181161
#

0 commit comments

Comments
 (0)