makefile

来自「This little Program allows you to send c」· 代码 · 共 37 行

TXT
37
字号
# Makefile for ct-api# Copyright (C) 1998 Gregor A. Panstruga# To compile and test, type:#   make allCC=gccCFLAGS=OBJS=LD=ldall: lib ctclean:	rm *.o *.so*install:	cp ./libctapi-t2i.so.0.20 /usr/lib	ln -s libctapi-t2i.so.0.20 /usr/lib/libctapi-t2i.solib: ctapi.o	$(LD) -G ctapi.o -o libctapi-t2i.so.0.20ctapi.o:  ctapi.c scio.c block.c	$(CC) -c -include scio.c -include block.c -include tools.c ctapi.c ct:	$(CC) -include tools.c ct.c -lctapi-t2i -o ct	

⌨️ 快捷键说明

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