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

📄 makefile.std

📁 一个linux下rs485驱动程序的源代码
💻 STD
字号:
CC=gcc# enable next for WinNT target# OS=Windows_NT# enable next for DJGPP target# DJGPP = 1ifdef DJGPPCFLAGS += -I../config/djgpp#  LOADLIBES += -liberty#elseifeq ($(OS),Windows_NT)#enable next for WinNT targetCFLAGS += -I../config/winntLOADLIBES += -liberty endifendifCFLAGS += -Wall -Wstrict-prototypes CFLAGS += -O2CFLAGS += -I. -I.. -I../ul_libCFLAGS += -ggdbLDFLAGS += -L../ul_libLOADLIBES += -lulanLIBDEPS += ../ul_lib/libulan.aTARGETS=ul_sendhex ul_lcscan ul_spy ul_lcabsp ul_buftst ul_sendmsgall :	defaultdefault : $(TARGETS)ul_buftst : ul_buftst.o $(LIBDEPS)ul_sendhex : ul_sendhex.o $(LIBDEPS)ul_spy : ul_spy.o $(LIBDEPS)ul_lcabsp : ul_lcabsp.o $(LIBDEPS)ul_lcscan : ul_lcscan.o $(LIBDEPS).SUFFIXES: .i .s%.c : %.i	$(CC) -E $(CFLAGS) $< >$@%.c : %.s	$(CC) -S $(CFLAGS) $<dep:	$(CC) $(CFLAGS) $(CPPFLAGS) -w -E -M *.c $(MORE_C_FILES) > dependdepend:	@touch dependclean :	rm -f *.o *~ ulc_tst ul_sendhex ul_spy ul_lcabsp ul_lcscan ul_buftst \	    ul_sendmsg *.exe depend-include depend

⌨️ 快捷键说明

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