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

📄 makefile.in

📁 This a support library and assorted sample programs for interfacing
💻 IN
字号:
# Makefile.in# $Modified: Thu Jan 22 11:55:32 1998 by brook $## The C compiler# What we use to compile C files.# CC = ccCC = @CC@# The flags we use to compile C files.CFLAGS = @CFLAGS@ ##-DINCLUDE_GPS_CONDITION## The C preprocessor.# What we use for preprocessing.  (gcc -E -traditional-cpp)CPP = @CPP_TRADITIONAL@# Flags passed to the C preprocessor.  ()CPPFLAGS = @CPPFLAGS@# Definitions to be passed to the C preprocessor.  (-DHAVE_CONFIG_H)DEFS = @DEFS@## The Linker.# Flags passed to the linker.  (-g -O)LDFLAGS = @LDFLAGS@# Use this for building statically linked executables with GCC.# LDFLAGS = -static @LDFLAGS@## Local librariesLIBS = ## C compile commands.COMPILE.c = $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -cLINK.c = $(CC) $(LDFLAGS)COMPILE_AND_LINK.c = \    $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS)## Where to look for include files.INCLUDE =## Implicit rules..SUFFIXES: .c.c.o:	$(COMPILE.c) $(INCLUDE) -o $@ $<## Libraries and object filesLIB_OBJECTS = as_gps.o## ProgramsPROGRAMS=gps_test gps_settime gps_average gps_test_send gps_printloc gps_resetall: $(PROGRAMS)%:%.c libasgps.a	$(LINK.c) -o $@ $< libasgps.a $(LIBS)libasgps.a:  $(LIB_OBJECTS)	ar -r libasgps.a $(LIB_OBJECTS)	ranlib libasgps.aclean:	rm -f *.o *.a $(PROGRAMS)  *~ config.statusdist-clean: clean	rm -f config.cache config.log config.h Makefile

⌨️ 快捷键说明

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