makefile

来自「大国补丁后的nessus2.2.8的源代码」· 代码 · 共 34 行

TXT
34
字号
#Depending on your system, you will need to modify this makefile.#If you do not have gcc, change the setting for CC, but you must#use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc#compiler; get gcc if you are still using it). #If the ar command fails on your system, consult the ar manpage#for your system. include ../../../nessus.tmplLIBS=-L./ -lgd -lmall: libgd.a gddemo giftogd webgifgddemo: gddemo.o libgd.a gd.h gdfonts.h gdfontl.h	$(CC) gddemo.o -o gddemo	$(LIBS)giftogd: giftogd.o libgd.a gd.h	$(CC) giftogd.o -o giftogd	$(LIBS) libgd.a: gd.o gdfontt.o gdfonts.o gdfontmb.o gdfontl.o gdfontg.o \	gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h gdfontg.h	rm -f libgd.a	$(AR) rc libgd.a gd.o gdfontt.o gdfonts.o gdfontmb.o \		gdfontl.o gdfontg.o	@ranlib libgd.a || echo "ranlib failed"webgif: webgif.o libgd.a gd.h	$(CC) webgif.o -o webgif	$(LIBS)clean:	rm -f *.o *.a gddemo giftogd 

⌨️ 快捷键说明

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