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

📄 makefile.in

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 IN
字号:
## ucsim cmd.src/Makefile## (c) Drotos Daniel, Talker Bt. 1997#STARTYEAR	= 1997SHELL		= /bin/shCXX		= @CXX@CPP		= @CPP@CXXCPP		= @CXXCPP@RANLIB		= @RANLIB@INSTALL		= @INSTALL@LEX		= @LEX@YACC		= @YACC@BISON_PLUS_PLUS	= @BISON_PLUS_PLUS@top_builddir	= @top_builddir@top_srcdir	= @top_srcdir@DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)CPPFLAGS        = @CPPFLAGS@ -I$(srcdir) -I$(top_srcdir) -I$(top_builddir) \		  -I$(top_srcdir)/sim.src -I$(top_srcdir)/gui.srcCFLAGS          = @CFLAGS@ -WallCXXFLAGS        = @CXXFLAGS@ -WallM_OR_MM         = @M_OR_MM@prefix          = @prefix@exec_prefix     = @exec_prefix@bindir          = @bindir@libdir          = @libdir@datadir         = @datadir@includedir      = @includedir@mandir          = @mandir@man1dir         = $(mandir)/man1man2dir         = $(mandir)/man2infodir         = @infodir@srcdir          = @srcdir@VPATH           = @srcdir@OBJECTS		= cmdset.o command.o newcmd.o cmdutil.o syntax.o \		  get.o set.o timer.o bp.o info.o show.o cmdgui.o cmdconf.o \		  cmduc.o cmdstat.o cmdmem.o \		  cmdpars.o cmdlex.oDEVEL		= $(shell ( bash -c "test -e $(top_builddir)devel && echo yes" ))# Compiling entire program or any subproject# ------------------------------------------all: checkconf cmdlibcmd.src: all# Compiling and installing everything and runing test# ---------------------------------------------------install: all installdirs# Deleting all the installed files# --------------------------------uninstall:# Performing self-test# --------------------check:test:# Performing installation test# ----------------------------installcheck:# Creating installation directories# ---------------------------------installdirs:# Creating dependencies# ---------------------dep: Makefile.depMakefile.dep: $(srcdir)/*.cc $(srcdir)/*.h	$(CXXCPP) $(CPPFLAGS) $(M_OR_MM) $(filter %.cc,$^) >Makefile.depinclude Makefile.depinclude $(srcdir)/clean.mkcmdpars.cc: cmdpars.yifeq ($(DEVEL),yes)  cmdlex.cc: cmdlex.l cmdpars.hendif# My rules# --------cmdlib: $(top_builddir)libcmd.a$(top_builddir)libcmd.a: $(OBJECTS)	ar -rcu $*.a $(OBJECTS)	$(RANLIB) $*.a.cc.o:	$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@#.y.cc:#	rm -f $*.cc $*.h#	$(YACC) -d $<#	mv y.tab.c $*.cc#	mv y.tab.h $*.hifeq ($(DEVEL),yes).y.cc:	rm -f $*.cc $*.h	$(BISON_PLUS_PLUS) -d -o $*.cc $<.l.cc:	rm -f $*.cc	$(LEX) --c++ -o $*.cc $<endif# Remaking configuration# ----------------------checkconf:	@if [ -f $(top_builddir)devel ]; then\	  $(MAKE) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\	fi# End of cmd.src/Makefile.in

⌨️ 快捷键说明

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