?? 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 + -