mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 06:12:47 -06:00
21 lines
353 B
Text
21 lines
353 B
Text
|
|
OBJ = aigdataset.obj aigopen.obj gridlib.obj aigccitt.obj
|
|
|
|
EXTRAFLAGS = -I../../ogr/ogrsf_frmts/avc
|
|
|
|
GDAL_ROOT = ..\..
|
|
|
|
!INCLUDE $(GDAL_ROOT)\nmake.opt
|
|
|
|
default: $(OBJ)
|
|
xcopy /D /Y *.obj ..\o
|
|
|
|
all: $(OBJ) aitest.exe
|
|
|
|
aitest.exe: $(OBJ) aitest.c
|
|
$(CC) $(CFLAGS) aitest.c aigopen.obj gridlib.obj \
|
|
$(GDAL_ROOT)/port/cpl.lib
|
|
|
|
clean:
|
|
-del *.obj
|
|
|