3 # Author: Robert Roebling
6 # Copyright: (c) 1998 Robert Roebling
8 # Makefile for OLE demo (GTK version)
10 # This makefile requires wxWindows/GTK to be
11 # installed (possibly using "make install")
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`
21 servlet.o: servlet.cpp
22 $(CC) `wx-config --cflags` `gtk-config --cflags` -I../../gtk -c servlet.cpp
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