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

📄 makefile.in

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 IN
字号:
# Makefile for kano-networks talkerSHELL		= /bin/shCXX		= @CXX@CXXCPP		= @CXXCPP@INSTALL		= @INSTALL@STRIP		= @STRIP@CP		= /bin/cptop_builddir	= @top_builddir@top_srcdir	= @top_srcdir@DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)CPPFLAGS        = @CPPFLAGS@ -I. -I$(top_builddir)#		  -I$(top_builddir)cmd.src -I$(top_builddir)sim.srcCFLAGS          = @CFLAGS@ -WallCXXFLAGS        = @CXXFLAGS@ -WallM_OR_MM         = @M_OR_MM@LIBS		= @CURSES_LIBS@ @LIBS@EXEEXT		= @EXEEXT@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@VPATH           = @srcdir@OBJECTS		= main.o fileio.o frontend.o posix_signal.o# Compiling entire program or any subproject# ------------------------------------------all: serio.srcifeq ($(curses_ok),yes)serio.src: checkconf serialview$(EXEEXT)elseserio.src: checkconfendif# Compiling and installing everything and runing test# ---------------------------------------------------install: all installdirs	$(INSTALL) serialview$(EXEEXT) $(DESTDIR)$(bindir)/serialview$(EXEEXT)	$(STRIP) $(DESTDIR)$(bindir)/serialview$(EXEEXT)# Deleting all the installed files# --------------------------------uninstall:	rm -f $(DESTDIR)$(bindir)/serialview$(EXEEXT)# Performing self-test# --------------------check:test:# Performing installation test# ----------------------------installcheck:# Creating installation directories# ---------------------------------installdirs:	test -d $(DESTDIR)$(bindir) || $(INSTALL) -d $(DESTDIR)$(bindir)# Creating dependencies# ---------------------dep: Makefile.depMakefile.dep: $(srcdir)/*.cc $(srcdir)/*.h $(srcdir)/*.hh	$(CXXCPP) $(CPPFLAGS) $(M_OR_MM) $(filter %.cc,$^) >Makefile.depifeq "$(findstring $(MAKECMDGOALS),uninstall installcheck installdirs checkconf \                                   clean distclean mostlyclean realclean)" ""  include Makefile.dependifinclude $(srcdir)/clean.mk# My rules# --------serialview$(EXEEXT): $(OBJECTS)	$(CXX) -o $@ $(LDFLAGS) $(OBJECTS) $(LIBS).cc.o:	$(CXX) $(CXXFLAGS)  $(CPPFLAGS) -c $< -o $@# 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/serio.src/Makefile.in

⌨️ 快捷键说明

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