📄 makefile
字号:
include ../config.makLIBNAME = libinput.aSRCS=input.c lirc.c OBJS=$(SRCS:.c=.o)CFLAGS = $(OPTFLAGS) -I. -I.. $(EXTRA_INC).SUFFIXES: .c .o.c.o: $(CC) -c $(CFLAGS) -o $@ $<$(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME)all: $(LIBNAME)clean: rm -f *.o *.a *~distclean: rm -f Makefile.bak *.o *.a *~ .dependdep: dependdepend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend## include dependency files if they exist#ifneq ($(wildcard .depend),)include .dependendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -