Ignore:
Timestamp:
2009-01-19T17:19:55+01:00 (16 years ago)
Author:
stoecker
Message:

added proxy stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/Makefile

    r12609 r13262  
    11#!/usr/bin/make
     2
     3MOC=moc
     4#MOC=/usr/share/qt4/bin/moc
     5CFLAGS  =
    26LDFLAGS = `pkg-config --libs --cflags QtCore QtGui QtWebKit`
    37
    4 compile: webkit-image.cpp webkit-image.h
    5         g++ -W -o webkit-image -I/usr/include/qt4/ -O2 $(LDFLAGS) webkit-image.cpp
     8webkit-image: webkit-image.cpp webkit-image.h
     9        g++ -W -o $@ -O2 $(CFLAGS) $(LDFLAGS) webkit-image.cpp
    610
    711webkit-image.h: webkit-image.cpp
    8         /usr/share/qt4/bin/moc webkit-image.cpp >webkit-image.h
     12        $(MOC) webkit-image.cpp >$@
    913
    1014clean:
Note: See TracChangeset for help on using the changeset viewer.