⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 IN
字号:
## uCsim gui.src/portmon.src/Makefile## (c) Drotos Daniel, Talker Bt. 1999#SHELL		= /bin/shCXX		= @CXX@CPP		= @CPP@CXXCPP		= @CXXCPP@RANLIB		= @RANLIB@INSTALL		= @INSTALL@top_builddir	= @top_builddir@top_srcdir	= @top_srcdir@PKGDIR		= ../DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)CPPFLAGS        = @CPPFLAGS@ -I. -I$(top_builddir) -I$(PKGDIR)CFLAGS          = @CFLAGS@ -WallCXXFLAGS        = @CXXFLAGS@ -WallM_OR_MM         = @M_OR_MM@LIBS		= -L$(top_builddir) -L$(PKGDIR) -lgui @CURSES_LIBS@ -lutil @LIBS@curses_ok	= @curses_ok@prefix          = @prefix@exec_prefix     = @exec_prefix@bindir          = @bindir@libdir          = @libdir@datadir         = @datadir@includedir      = @includedir@mandir          = @mandir@man1dir         = $(mandir)/man1man2dir         = $(mandir)/man2infodir         = @infodir@srcdir          = @srcdir@OBJECTS         = portmon.o \		  pmapp.o port.o# Compiling entire program or any subproject# ------------------------------------------all: checkconf otherlibs portmon.src# Compiling and installing everything and runing test# ---------------------------------------------------install: all installdirs	$(INSTALL) -s portmon $(bindir)# Deleting all the installed files# --------------------------------uninstall:	rm -f $(bindir)/portmon# Performing self-test# --------------------check:# Performing installation test# ----------------------------installcheck:# Creating installation directories# ---------------------------------installdirs:	test -d $(bindir) || $(INSTALL) -d $(bindir)# Creating dependencies# ---------------------dep: Makefile.depMakefile.dep: $(srcdir)/*.cc $(top_builddir)*.h $(PKGDIR)/*.h	$(CXXCPP) $(CPPFLAGS) $(M_OR_MM) $(filter %.cc,$^) >Makefile.depinclude Makefile.depinclude clean.mk#parser.cc: parser.y#plex.cc: plex.l# My rules# --------ifeq ($(curses_ok),yes)portmon.src: portmonelseportmon.src:endifportmon: $(OBJECTS) $(top_builddir)*.a $(PKGDIR)/*.a	$(CXX) $(CXXFLAGS) -o portmon $(OBJECTS) $(LIBS)ifeq ($(curses_ok),yes)otherlibs:	$(MAKE) -C $(top_builddir) libs	$(MAKE) -C $(PKGDIR) libselseotherlibs:endif.cc.o:	$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $< -o $@.y.cc:	rm -f $*.cc $*.h	$(YACC) -d $<	mv y.tab.c $*.cc	mv y.tab.h $*.h.l.cc:	rm -f $*.cc	$(LEX) -t $< >$*.cc# Remaking configuration# ----------------------checkconf:	@if [ -f $(top_builddir)devel ]; then\	  $(MAKE) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\	fi# End of gui.src/portmon.src/Makefile.in

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -