source: osm/applications/editors/josm/plugins/wmsplugin/Makefile@ 14414

Last change on this file since 14414 was 13262, checked in by stoecker, 16 years ago

added proxy stuff

File size: 337 bytes
Line 
1#!/usr/bin/make
2
3MOC=moc
4#MOC=/usr/share/qt4/bin/moc
5CFLAGS =
6LDFLAGS = `pkg-config --libs --cflags QtCore QtGui QtWebKit`
7
8webkit-image: webkit-image.cpp webkit-image.h
9 g++ -W -o $@ -O2 $(CFLAGS) $(LDFLAGS) webkit-image.cpp
10
11webkit-image.h: webkit-image.cpp
12 $(MOC) webkit-image.cpp >$@
13
14clean:
15 rm -f *.o webkit-image webkit-image.h
Note: See TracBrowser for help on using the repository browser.