mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 06:12:47 -06:00
25 lines
532 B
Text
25 lines
532 B
Text
|
|
OBJ = hfaband.obj hfadataset.obj hfadictionary.obj hfaentry.obj \
|
|
hfafield.obj hfaopen.obj hfatype.obj hfacompress.obj \
|
|
hfa_overviews.obj
|
|
|
|
GDAL_ROOT = ..\..
|
|
|
|
!INCLUDE $(GDAL_ROOT)\nmake.opt
|
|
|
|
default: $(OBJ)
|
|
for %I in ($(OBJ)) do xcopy /D /Y %I ..\o
|
|
|
|
clean:
|
|
-del *.obj
|
|
-del *.exe
|
|
-del *.ilk
|
|
-del *.exp
|
|
-del *.lib
|
|
-del *.pdb
|
|
-del *.manifest
|
|
|
|
hfatest.exe: hfatest.cpp $(GDALLIB)
|
|
$(CC) $(CFLAGS) hfatest.cpp $(OBJ) $(GDALLIB)
|
|
if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1
|
|
del hfatest.obj
|