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

📄 makefile.in

📁 Small Device C Compiler 面向Inter8051
💻 IN
字号:
## uCsim avr.src/Makefile## (c) Drotos Daniel, Talker Bt. 1997#STARTYEAR	= 1997SHELL		= /bin/shCXX		= @CXX@CPP		= @CPP@CXXCPP		= @CXXCPP@RANLIB		= @RANLIB@INSTALL		= @INSTALL@PRJDIR		= ..DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)CPPFLAGS        = @CPPFLAGS@ -I. -I$(PRJDIR) \		  -I$(PRJDIR)/cmd.src -I$(PRJDIR)/sim.src -I$(PRJDIR)/gui.srcCFLAGS          = @CFLAGS@ -WallCXXFLAGS        = @CXXFLAGS@ -WallM_OR_MM         = @M_OR_MM@PICOPT		= @PICOPT@SHAREDLIB	= @SHAREDLIB@EXEEXT          = @EXEEXT@LIBS		= @LIBS@ -L$(PRJDIR) -lsim -lutil -lsim -lcmd -lguiucsimDL		= @DL@dl_ok		= @dl_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_SHARED	= glob.o \		  simavr.o avr.o port.o \		  inst.o bit_inst.o jump_inst.o move_inst.o logic_inst.o \		  arith_inst.oOBJECTS_EXE	= savr.oOBJECTS		= $(OBJECTS_SHARED) $(OBJECTS_EXE)enable_dlso	= @enable_dlso@dlso_ok		= @dlso_ok@AVRASM		= tavrasmTEST_OBJ	= test_bit.hex test_dis.hex test_mov.hex test_jmp.hex \		  test_arith.hex test_call.hex# Compiling entire program or any subproject# ------------------------------------------all: checkconf otherlibs avr.src# Compiling and installing everything and runing test# ---------------------------------------------------install: all installdirs	$(INSTALL) -s savr$(EXEEXT) $(bindir)# Deleting all the installed files# --------------------------------uninstall:	rm -f $(bindir)/savr$(EXEEXT)# Performing self-test# --------------------check: $(TEST_OBJ)test:# Performing installation test# ----------------------------installcheck:# Creating installation directories# ---------------------------------installdirs:	test -d $(bindir) || $(INSTALL) -d $(bindir)# Creating dependencies# ---------------------dep: Makefile.depMakefile.dep: *.cc *.h	$(CXXCPP) $(CPPFLAGS) $(M_OR_MM) *.cc >Makefile.depinclude Makefile.depinclude clean.mk#parser.cc: parser.y#plex.cc: plex.l# My rules# --------.SUFFIXES: .asm .hexavr.src: savr$(EXEEXT) shared_libsavr$(EXEEXT): $(OBJECTS) $(PRJDIR)/*.a	$(CXX) $(CXXFLAGS) $(OBJECTS) $(LIBS) -o $@ifeq ($(dlso_ok),yes)shared_lib: $(PRJDIR)/savr.soelseshared_lib:	@$(PRJDIR)/mkecho $(PRJDIR) "No AVR shared lib made."	@$(PRJDIR)/mkecho $(PRJDIR) "(SHAREDLIB="$(SHAREDLIB)",dl_ok="$(dl_ok)",enable_dlso="$(enable_dlso)")"endif$(PRJDIR)/savr.so: $(OBJECTS_SHARED)	$(CXX) -shared $(OBJECTS_SHARED) -o $(PRJDIR)/savr.sootherlibs:	cd $(PRJDIR)/cmd.src && $(MAKE) all	cd $(PRJDIR)/sim.src && $(MAKE) all.cc.o:	$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@.asm.hex:	$(AVRASM) -l $< -o $@ -e $<.lst# Remaking configuration# ----------------------checkconf:	@if [ -f $(PRJDIR)/devel ]; then\	  $(MAKE) -f conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" freshconf;\	fi# End of avr.src/Makefile.in

⌨️ 快捷键说明

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