mirror of https://gitee.com/openkylin/cups.git
137 lines
1.7 KiB
Makefile
137 lines
1.7 KiB
Makefile
|
#
|
||
|
# Port monitor makefile for CUPS.
|
||
|
#
|
||
|
# Copyright 2007-2019 by Apple Inc.
|
||
|
# Copyright 2006 by Easy Software Products.
|
||
|
#
|
||
|
# Licensed under Apache License v2.0. See the file "LICENSE" for more information.
|
||
|
#
|
||
|
|
||
|
include ../Makedefs
|
||
|
|
||
|
TARGETS = bcp tbcp
|
||
|
|
||
|
OBJS = bcp.o tbcp.o
|
||
|
|
||
|
|
||
|
#
|
||
|
# Make all targets...
|
||
|
#
|
||
|
|
||
|
all: $(TARGETS)
|
||
|
|
||
|
|
||
|
#
|
||
|
# Make library targets...
|
||
|
#
|
||
|
|
||
|
libs:
|
||
|
|
||
|
|
||
|
#
|
||
|
# Make unit tests...
|
||
|
#
|
||
|
|
||
|
unittests:
|
||
|
|
||
|
|
||
|
#
|
||
|
# Clean all object files...
|
||
|
#
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(OBJS) $(TARGETS)
|
||
|
|
||
|
|
||
|
#
|
||
|
# Update dependencies (without system header dependencies...)
|
||
|
#
|
||
|
|
||
|
depend:
|
||
|
$(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
|
||
|
|
||
|
|
||
|
#
|
||
|
# Install all targets...
|
||
|
#
|
||
|
|
||
|
install: all install-data install-headers install-libs install-exec
|
||
|
|
||
|
|
||
|
#
|
||
|
# Install data files...
|
||
|
#
|
||
|
|
||
|
install-data:
|
||
|
|
||
|
|
||
|
#
|
||
|
# Install programs...
|
||
|
#
|
||
|
|
||
|
install-exec:
|
||
|
$(INSTALL_DIR) -m 755 $(SERVERBIN)/monitor
|
||
|
for file in $(TARGETS); do \
|
||
|
$(INSTALL_BIN) $$file $(SERVERBIN)/monitor; \
|
||
|
done
|
||
|
if test "x$(SYMROOT)" != "x"; then \
|
||
|
$(INSTALL_DIR) $(SYMROOT); \
|
||
|
for file in $(TARGETS); do \
|
||
|
cp $$file $(SYMROOT); \
|
||
|
dsymutil $(SYMROOT)/$$file; \
|
||
|
done \
|
||
|
fi
|
||
|
|
||
|
|
||
|
#
|
||
|
# Install headers...
|
||
|
#
|
||
|
|
||
|
install-headers:
|
||
|
|
||
|
|
||
|
#
|
||
|
# Install libraries...
|
||
|
#
|
||
|
|
||
|
install-libs:
|
||
|
|
||
|
|
||
|
#
|
||
|
# Uninstall all targets...
|
||
|
#
|
||
|
|
||
|
uninstall:
|
||
|
for file in $(TARGETS); do \
|
||
|
$(RM) $(SERVERBIN)/monitor/$$file; \
|
||
|
done
|
||
|
-$(RMDIR) $(SERVERBIN)/monitor
|
||
|
-$(RMDIR) $(SERVERBIN)
|
||
|
|
||
|
|
||
|
#
|
||
|
# bcp
|
||
|
#
|
||
|
|
||
|
bcp: bcp.o ../cups/$(LIBCUPS)
|
||
|
echo Linking $@...
|
||
|
$(LD_CC) $(ALL_LDFLAGS) -o $@ bcp.o $(LINKCUPS)
|
||
|
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
|
||
|
|
||
|
|
||
|
#
|
||
|
# tbcp
|
||
|
#
|
||
|
|
||
|
tbcp: tbcp.o ../cups/$(LIBCUPS)
|
||
|
echo Linking $@...
|
||
|
$(LD_CC) $(ALL_LDFLAGS) -o $@ tbcp.o $(LINKCUPS)
|
||
|
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
|
||
|
|
||
|
|
||
|
#
|
||
|
# Dependencies...
|
||
|
#
|
||
|
|
||
|
include Dependencies
|