📄 makefile.in
字号:
.s.o: $(COMPILE) -c $<.S.o: $(COMPILE) -c $<mostlyclean-compile: -rm -f *.o core *.coreclean-compile:distclean-compile: -rm -f *.tab.cmaintainer-clean-compile:.c.lo: $(LIBTOOL) --mode=compile $(COMPILE) -c $<.s.lo: $(LIBTOOL) --mode=compile $(COMPILE) -c $<.S.lo: $(LIBTOOL) --mode=compile $(COMPILE) -c $<mostlyclean-libtool: -rm -f *.loclean-libtool: -rm -rf .libs _libsdistclean-libtool:maintainer-clean-libtool:consumer: $(consumer_OBJECTS) $(consumer_DEPENDENCIES) @rm -f consumer $(CXXLINK) $(consumer_LDFLAGS) $(consumer_OBJECTS) $(consumer_LDADD) $(LIBS)dining: $(dining_OBJECTS) $(dining_DEPENDENCIES) @rm -f dining $(CXXLINK) $(dining_LDFLAGS) $(dining_OBJECTS) $(dining_LDADD) $(LIBS)client: $(client_OBJECTS) $(client_DEPENDENCIES) @rm -f client $(CXXLINK) $(client_LDFLAGS) $(client_OBJECTS) $(client_LDADD) $(LIBS)buffer: $(buffer_OBJECTS) $(buffer_DEPENDENCIES) @rm -f buffer $(CXXLINK) $(buffer_LDFLAGS) $(buffer_OBJECTS) $(buffer_LDADD) $(LIBS)sem1: $(sem1_OBJECTS) $(sem1_DEPENDENCIES) @rm -f sem1 $(CXXLINK) $(sem1_LDFLAGS) $(sem1_OBJECTS) $(sem1_LDADD) $(LIBS)sem2: $(sem2_OBJECTS) $(sem2_DEPENDENCIES) @rm -f sem2 $(CXXLINK) $(sem2_LDFLAGS) $(sem2_OBJECTS) $(sem2_LDADD) $(LIBS)diner: $(diner_OBJECTS) $(diner_DEPENDENCIES) @rm -f diner $(CXXLINK) $(diner_LDFLAGS) $(diner_OBJECTS) $(diner_LDADD) $(LIBS)produce: $(produce_OBJECTS) $(produce_DEPENDENCIES) @rm -f produce $(CXXLINK) $(produce_LDFLAGS) $(produce_OBJECTS) $(produce_LDADD) $(LIBS)consume: $(consume_OBJECTS) $(consume_DEPENDENCIES) @rm -f consume $(CXXLINK) $(consume_LDFLAGS) $(consume_OBJECTS) $(consume_LDADD) $(LIBS)server: $(server_OBJECTS) $(server_DEPENDENCIES) @rm -f server $(CXXLINK) $(server_LDFLAGS) $(server_OBJECTS) $(server_LDADD) $(LIBS)clients: $(clients_OBJECTS) $(clients_DEPENDENCIES) @rm -f clients $(CXXLINK) $(clients_LDFLAGS) $(clients_OBJECTS) $(clients_LDADD) $(LIBS)bugtest: $(bugtest_OBJECTS) $(bugtest_DEPENDENCIES) @rm -f bugtest $(CXXLINK) $(bugtest_LDFLAGS) $(bugtest_OBJECTS) $(bugtest_LDADD) $(LIBS)detached: $(detached_OBJECTS) $(detached_DEPENDENCIES) @rm -f detached $(CXXLINK) $(detached_LDFLAGS) $(detached_OBJECTS) $(detached_LDADD) $(LIBS).C.o: $(CXXCOMPILE) -c $<.C.lo: $(LTCXXCOMPILE) -c $<install-pkgdataDATA: $(pkgdata_DATA) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) @list='$(pkgdata_DATA)'; for p in $$list; do \ if test -f $(srcdir)/$$p; then \ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p"; \ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p; \ else if test -f $$p; then \ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p"; \ $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p; \ fi; fi; \ doneuninstall-pkgdataDATA: @$(NORMAL_UNINSTALL) list='$(pkgdata_DATA)'; for p in $$list; do \ rm -f $(DESTDIR)$(pkgdatadir)/$$p; \ donetags: TAGSID: $(HEADERS) $(SOURCES) $(LISP) list='$(SOURCES) $(HEADERS)'; \ unique=`for i in $$list; do echo $$i; done | \ awk ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ here=`pwd` && cd $(srcdir) \ && mkid -f$$here/ID $$unique $(LISP)TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS)'; \ unique=`for i in $$list; do echo $$i; done | \ awk ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)mostlyclean-tags:clean-tags:distclean-tags: -rm -f TAGS IDmaintainer-clean-tags:distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)subdir = examplesdistdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ || cp -p $$d/$$file $(distdir)/$$file || :; \ fi; \ donebuffer.o: buffer.C ../threads/buffer.h ../threads/thread.h \ ../threads/stl.h ../threads/alloc.h ../threads/mutex.h \ ../threads/attributes.h ../threads/spinlock.h ../threads/cond.h \ ../threads/semaphore.h ../threads/socket.h \ ../threads/linked_list.hbugtest.o: bugtest.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/exception.hclient.o: client.C ../threads/io.h ../threads/socket.h \ ../threads/thread.h ../threads/stl.h ../threads/alloc.h \ ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/buffer.h ../threads/linked_list.h \ ../threads/signal_num.hclients.o: clients.C ../threads/io.h ../threads/socket.h \ ../threads/thread.h ../threads/stl.h ../threads/alloc.h \ ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/buffer.h ../threads/linked_list.h \ ../threads/signal_num.hconsume.o: consume.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.hconsumer.o: consumer.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/signal_num.hdetached.o: detached.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.hdiner.o: diner.C ../threads/thread.h ../threads/stl.h ../threads/alloc.h \ ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.hdining.o: dining.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ philosopher.h dining.hdining_main.o: dining_main.C dining.h ../threads/thread.h \ ../threads/stl.h ../threads/alloc.h ../threads/mutex.h \ ../threads/attributes.h ../threads/spinlock.h ../threads/cond.h \ ../threads/semaphore.hphilosopher.o: philosopher.C philosopher.h ../threads/thread.h \ ../threads/stl.h ../threads/alloc.h ../threads/mutex.h \ ../threads/attributes.h ../threads/spinlock.h ../threads/cond.h \ ../threads/semaphore.h dining.hproduce.o: produce.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.hsem1.o: sem1.C ../threads/thread.h ../threads/stl.h ../threads/alloc.h \ ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/exception.hsem2.o: sem2.C ../threads/thread.h ../threads/stl.h ../threads/alloc.h \ ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.hserver.o: server.C ../threads/thread.h ../threads/stl.h \ ../threads/alloc.h ../threads/mutex.h ../threads/attributes.h \ ../threads/spinlock.h ../threads/cond.h ../threads/semaphore.h \ ../threads/io.h ../threads/socket.h ../threads/exception.h \ ../threads/buffer.h ../threads/linked_list.hinfo-am:info: info-amdvi-am:dvi: dvi-amcheck-am: all-amcheck: check-aminstallcheck-am:installcheck: installcheck-aminstall-exec-am: install-binPROGRAMSinstall-exec: install-exec-aminstall-data-am: install-pkgdataDATAinstall-data: install-data-aminstall-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-aminstall: install-amuninstall-am: uninstall-binPROGRAMS uninstall-pkgdataDATAuninstall: uninstall-amall-am: Makefile $(PROGRAMS) $(DATA)all-redirect: all-aminstall-strip: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s installinstalldirs: $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir)mostlyclean-generic:clean-generic:distclean-generic: -rm -f Makefile $(CONFIG_CLEAN_FILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]*maintainer-clean-generic:mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \ mostlyclean-libtool mostlyclean-tags \ mostlyclean-genericmostlyclean: mostlyclean-amclean-am: clean-binPROGRAMS clean-compile clean-libtool clean-tags \ clean-generic mostlyclean-amclean: clean-amdistclean-am: distclean-binPROGRAMS distclean-compile distclean-libtool \ distclean-tags distclean-generic clean-am -rm -f libtooldistclean: distclean-ammaintainer-clean-am: maintainer-clean-binPROGRAMS \ maintainer-clean-compile maintainer-clean-libtool \ maintainer-clean-tags maintainer-clean-generic \ distclean-am @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild."maintainer-clean: maintainer-clean-am.PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \mostlyclean-compile distclean-compile clean-compile \maintainer-clean-compile mostlyclean-libtool distclean-libtool \clean-libtool maintainer-clean-libtool uninstall-pkgdataDATA \install-pkgdataDATA tags mostlyclean-tags distclean-tags clean-tags \maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \installcheck-am installcheck install-exec-am install-exec \install-data-am install-data install-am install uninstall-am uninstall \all-redirect all-am all installdirs mostlyclean-generic \distclean-generic clean-generic maintainer-clean-generic clean \mostlyclean distclean maintainer-clean/* modem_SOURCES = modem.C LockFile.C *//* modem_LDADD = ../threads/libthreads.a */install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL)uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL)# Tell versions [3.59,3.63) of GNU make to not export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -