makefile

来自「由arcgis的general产生的数据转换成shape文件格式」· 代码 · 共 28 行

TXT
28
字号
# $Id: Makefile,v 1.5 2000/06/12 13:24:08 jan Exp $# add -DWITH_STRICMP if you are compiling i.e. with MS VC# add -DDEBUG if you want lots of debugging infosCFLAGS=all: gen2shputils.o: utils.c utils.h	$(CC) -c utils.cgen2shp: gen2shp.c utils.o	$(CC) $(CFLAGS) -o $@ -lshp gen2shp.c utils.otest: gen2shp	rm -f pnttest.dbf pnttest.shp pnttest.shx	./gen2shp pnttest points < pnttest.gen	rm -f arctest.dbf arctest.shp arctest.shx	./gen2shp arctest lines < arctest.gen	rm -f plytest.dbf plytest.shp plytest.shx	./gen2shp plytest polygons < plytest.genclean:	rm -f gen2shp *.o	rm -f pnttest.dbf pnttest.shp pnttest.shx	rm -f arctest.dbf arctest.shp arctest.shx	rm -f plytest.dbf plytest.shp plytest.shx

⌨️ 快捷键说明

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