mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Makefile.am for mapserver export tool
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4202 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
dce3e64342
commit
9f5669615d
67
tools/mapserver_export/Makefile.am
Normal file
67
tools/mapserver_export/Makefile.am
Normal file
@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2004 Gary Sherman <sherman at mrcc.com>
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
# $Id: Makefile.am 4200 2005-11-12 01:37:49Z gsherman $
|
||||
|
||||
bin_PROGRAMS = msexport
|
||||
|
||||
|
||||
%.moc.cpp: %.h
|
||||
$(MOC) -o $@ $<
|
||||
|
||||
%.h: %.ui
|
||||
$(UIC) -o $@ $<
|
||||
if HAVE_QT4
|
||||
../../tools/qgis-qt3to4.pl -uic $@
|
||||
endif
|
||||
|
||||
if !NO_UIC_IMPLEMENTATIONS
|
||||
%.cpp: %.ui
|
||||
$(UIC) -o $@ -impl $*.h $<
|
||||
endif
|
||||
|
||||
# %.h: %.ui
|
||||
# $(UIC) -o $@ $<
|
||||
#
|
||||
# %.cpp: %.ui
|
||||
# $(UIC) -o $@ -impl $*.h $<
|
||||
|
||||
msexport_MOC = qgsmapserverexport.moc.cpp \
|
||||
qgsmapserverexportbase.moc.cpp
|
||||
|
||||
|
||||
msexport_UI = qgsmapserverexportbase.cpp \
|
||||
qgsmapserverexportbase.h
|
||||
|
||||
msexport_UIC = qgsmapserverexportbase.ui
|
||||
|
||||
msexport_SOURCES = qgsmapserverexport.cpp \
|
||||
qgsmapserverexport.h \
|
||||
main.cpp \
|
||||
$(msexport_UI) \
|
||||
$(msexport_UIC) \
|
||||
$(msexport_MOC)
|
||||
|
||||
|
||||
|
||||
# UI dependencies
|
||||
qgsmapserverexportbase.cpp: qgsmapserverexportbase.ui qgsmapserverexportbase.h
|
||||
qgsmapserverexportbase.h: qgsmapserverexportbase.ui
|
||||
|
||||
BUILT_SOURCES = $(msexport_MOC) $(msexport_UI)
|
||||
|
||||
|
||||
|
||||
msexport_LDADD = $(QT_LDADD) $(PYTHON_LIB)
|
||||
msexport_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PYTHON_INCLUDE_DIRS) -I../../src
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = $(msexport_UIC)
|
Loading…
x
Reference in New Issue
Block a user