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

📄 makefile.in

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 IN
字号:
## S51 sim.src/Makefile## (c) Drotos Daniel, Talker Bt. 1997,99#STARTYEAR	= 1997SHELL		= /bin/shCXX		= @CXX@CPP		= @CPP@CXXCPP		= @CXXCPP@RANLIB		= @RANLIB@INSTALL		= @INSTALL@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)/cmd.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         = stack.o mem.o sim.o itsrc.o brk.o arg.o \		  guiobj.o uc.o hw.o# Compiling entire program or any subproject# ------------------------------------------all: checkconf sim_libtest_mem_speed: $(top_builddir)lib*.a test_mem_speed.o	$(CXX) -o $@ test_mem_speed.o -L$(top_builddir) -Wl,--start-group -lsim -lutil -lcmd -Wl,--end-groupsim.src: all# Compiling and installing everything and runing test# ---------------------------------------------------install: all installdirs# Deleting all the installed files# --------------------------------uninstall:# Performing self-test# --------------------check: test	./test_mem_speedtest: test_mem_speed# Performing installation test# ----------------------------installcheck:# Creating installation directories# ---------------------------------installdirs:# Creating dependencies# ---------------------dep: main.depMakefile.dep: $(srcdir)/*.cc $(srcdir)/*.h	$(CXXCPP) $(CPPFLAGS) $(M_OR_MM) $(filter %.cc,$^) >Makefile.depinclude Makefile.depinclude $(srcdir)/clean.mk#parser.cc: parser.y#plex.cc: plex.l# My rules# --------sim_lib: $(top_builddir)libsim.a$(top_builddir)libsim.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 $*.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 sim.src/Makefile

⌨️ 快捷键说明

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