Files
wxWidgets/utils/wxOLE/samples/servlet/Makefile
Robert Roebling 10d5be9ad3 experimental OLE control (the reason for the
recent reshuffle)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2283 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-04-25 16:55:03 +00:00

30 lines
707 B
Makefile

#
# File: Makefile
# Author: Robert Roebling
# Created: 1999
# Updated:
# Copyright: (c) 1998 Robert Roebling
#
# Makefile for OLE demo (GTK version)
#
# This makefile requires wxWindows/GTK to be
# installed (possibly using "make install")
# on your system.
#
CC = g++
servlet: servlet.o wxole.o
$(CC) -o servlet servlet.o wxole.o \
`wx-config --libs` -lbonobo `gnome-config --libs gnorba` `gnome-config --libs gnomeui`
servlet.o: servlet.cpp
$(CC) `wx-config --cflags` `gtk-config --cflags` -I../../gtk -c servlet.cpp
wxole.o: ../../gtk/wxole.cpp
$(CC) `wx-config --cflags` `gtk-config --cflags` `gnome-config --cflags gnorba` \
-I../../gtk -c ../../gtk/wxole.cpp
clean:
rm -f *.o servlet