📄 makefile
字号:
## makefile - simple makefile for the Lexmark 2070 color driver## Copyright 1999, Christian Kornblum### Important compiler and linker optionsCC=gccLD=gccCFLAGS=LDFLAGS=# Required librariesLDLIBS=# Source files and modulesSRC=c2070.cSHAREDHEADER=MOD=$(SRC:.c=.o)# Standard production rule.c.o: $(CC) -c $< $(CFLAGS)# make allall: c2070# linking the modulesc2070: $(MOD) $(LD) -o $@ $(MOD) $(LDLIBS) $(LDFLAGS)# dependencies, here a shared header$(SRC): $(SHAREDHEADER) # clear up the mess to start overclean: rm *.o c2070#install the driverinstall: all cp c2070 /usr/bin chmod a+x /usr/bin/c2070
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -