summaryrefslogtreecommitdiff
path: root/monitor
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2012-02-13 16:35:48 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2012-02-13 16:35:48 +0000
commit12f89d241ce15358fb71ef1b1249803ee9d97374 (patch)
treee4d30c1cef3c83b1f816ce482592c96a21daa4b3 /monitor
parentdcb445bcf3e9ec2efd56550263052aca70beb08e (diff)
downloadcups-12f89d241ce15358fb71ef1b1249803ee9d97374.tar.gz
Merge changes from CUPS 1.6svn-r10267.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@3643 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'monitor')
-rw-r--r--monitor/Dependencies32
-rw-r--r--monitor/Makefile4
2 files changed, 16 insertions, 20 deletions
diff --git a/monitor/Dependencies b/monitor/Dependencies
index 451a95a32..594a83cf8 100644
--- a/monitor/Dependencies
+++ b/monitor/Dependencies
@@ -1,18 +1,14 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-bcp.o: ../cups/cups-private.h ../cups/cups.h ../cups/file.h
-bcp.o: ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h
-bcp.o: ../cups/language.h ../cups/string-private.h ../config.h
-bcp.o: ../cups/debug-private.h ../cups/versioning.h ../cups/ppd-private.h
-bcp.o: ../cups/ppd.h ../cups/cups.h ../cups/pwg-private.h
-bcp.o: ../cups/http-private.h ../cups/http.h ../cups/md5-private.h
-bcp.o: ../cups/ipp-private.h ../cups/ipp.h ../cups/language-private.h
-bcp.o: ../cups/transcode.h ../cups/thread-private.h
-tbcp.o: ../cups/cups-private.h ../cups/cups.h ../cups/file.h
-tbcp.o: ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h
-tbcp.o: ../cups/language.h ../cups/string-private.h ../config.h
-tbcp.o: ../cups/debug-private.h ../cups/versioning.h ../cups/ppd-private.h
-tbcp.o: ../cups/ppd.h ../cups/cups.h ../cups/pwg-private.h
-tbcp.o: ../cups/http-private.h ../cups/http.h ../cups/md5-private.h
-tbcp.o: ../cups/ipp-private.h ../cups/ipp.h ../cups/language-private.h
-tbcp.o: ../cups/transcode.h ../cups/thread-private.h
+bcp.o: bcp.c ../cups/cups-private.h ../cups/cups.h ../cups/file.h \
+ ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h \
+ ../cups/language.h ../cups/string-private.h ../config.h \
+ ../cups/debug-private.h ../cups/ppd-private.h ../cups/ppd.h \
+ ../cups/pwg-private.h ../cups/http-private.h ../cups/md5-private.h \
+ ../cups/ipp-private.h ../cups/language-private.h ../cups/transcode.h \
+ ../cups/thread-private.h
+tbcp.o: tbcp.c ../cups/cups-private.h ../cups/cups.h ../cups/file.h \
+ ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h \
+ ../cups/language.h ../cups/string-private.h ../config.h \
+ ../cups/debug-private.h ../cups/ppd-private.h ../cups/ppd.h \
+ ../cups/pwg-private.h ../cups/http-private.h ../cups/md5-private.h \
+ ../cups/ipp-private.h ../cups/language-private.h ../cups/transcode.h \
+ ../cups/thread-private.h
diff --git a/monitor/Makefile b/monitor/Makefile
index 7454ea8bd..7e42112a3 100644
--- a/monitor/Makefile
+++ b/monitor/Makefile
@@ -3,7 +3,7 @@
#
# Port monitor makefile for CUPS.
#
-# Copyright 2007-2011 by Apple Inc.
+# Copyright 2007-2012 by Apple Inc.
# Copyright 2006 by Easy Software Products.
#
# These coded instructions, statements, and computer programs are the
@@ -56,7 +56,7 @@ clean:
#
depend:
- makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
+ $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
#