]> git.saurik.com Git - wxWidgets.git/blob - utils/wxOLE/samples/servlet/Makefile
experimental OLE control (the reason for the
[wxWidgets.git] / utils / wxOLE / samples / servlet / Makefile
1 #
2 # File: Makefile
3 # Author: Robert Roebling
4 # Created: 1999
5 # Updated:
6 # Copyright: (c) 1998 Robert Roebling
7 #
8 # Makefile for OLE demo (GTK version)
9 #
10 # This makefile requires wxWindows/GTK to be
11 # installed (possibly using "make install")
12 # on your system.
13 #
14
15 CC = g++
16
17 servlet: servlet.o wxole.o
18 $(CC) -o servlet servlet.o wxole.o \
19 `wx-config --libs` -lbonobo `gnome-config --libs gnorba` `gnome-config --libs gnomeui`
20
21 servlet.o: servlet.cpp
22 $(CC) `wx-config --cflags` `gtk-config --cflags` -I../../gtk -c servlet.cpp
23
24 wxole.o: ../../gtk/wxole.cpp
25 $(CC) `wx-config --cflags` `gtk-config --cflags` `gnome-config --cflags gnorba` \
26 -I../../gtk -c ../../gtk/wxole.cpp
27
28 clean:
29 rm -f *.o servlet