📄 makefile
字号:
# Generated automatically from Makefile.in by configure.## Makefile for the SAP example.# This probably requires GNU make.## Location of includes and libraryCSRC = ../../src# Library nameLNAME = uclmmbaseDEFS = -DHAVE_CONFIG_HCFLAGS = -g -O2 -W -Wall -Wwrite-strings -Wbad-function-cast -Wmissing-prototypes -Wcast-qual -Wmissing-declarations -Werror $(DEFS) -I$(CSRC)LIBS = -lnsl -lsocket -L$(CSRC) -l$(LNAME)CC = gccTARGET = sapdemoOBJS = sapdemo.oSRCS = $(OBJS:%.o=%.c)all: $(TARGET)sapdemo: $(OBJS) $(CSRC)/lib$(LNAME).a $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS).c.o: $(CC) $(CFLAGS) $(INC) -c $<$(CSRC)/lib$(LNAME).a: cd $(CSRC) && $(MAKE)clean: -rm -f $(OBJS) $(TARGET)distclean: clean -rm -f Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -