]> git.saurik.com Git - wxWidgets.git/blame - utils/wxOLE/samples/servlet/Makefile
experimental OLE control (the reason for the
[wxWidgets.git] / utils / wxOLE / samples / servlet / Makefile
CommitLineData
10d5be9a
RR
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
15CC = g++
16
17servlet: 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
21servlet.o: servlet.cpp
22 $(CC) `wx-config --cflags` `gtk-config --cflags` -I../../gtk -c servlet.cpp
23
24wxole.o: ../../gtk/wxole.cpp
25 $(CC) `wx-config --cflags` `gtk-config --cflags` `gnome-config --cflags gnorba` \
26 -I../../gtk -c ../../gtk/wxole.cpp
27
28clean:
29 rm -f *.o servlet