1#
2# Makefile
3#
4# Make file for simple sample application for the xmpptest application in pwlib
5#
6# Copyright (c) 2006 Derek J Smithies
7#
8# The contents of this file are subject to the Mozilla Public License
9# Version 1.0 (the "License"); you may not use this file except in
10# compliance with the License. You may obtain a copy of the License at
11# http://www.mozilla.org/MPL/
12#
13# Software distributed under the License is distributed on an "AS IS"
14# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
15# the License for the specific language governing rights and limitations
16# under the License.
17#
18# The Original Code is Open Phone Abstraction Library.
19#
20# The Initial Developer of the Original Code is Equivalence Pty. Ltd.
21#
22# Contributor(s): ______________________________________.
23#
24# $Log: Makefile,v $
25# Revision 1.1  2006/07/23 03:39:49  dereksmithies
26# Modify main.cxx so it compiles under linux.
27# Add Makefile so it can be compiled under linux.
28#
29#
30#
31
32PROG		= xmpptest
33SOURCES		:= \
34	ConnectDialog.cxx \
35	MainFrame.cxx     \
36	main.cxx          \
37	precompile.cxx
38
39#openphone.cxx : openphone.xrc
40#	wxrc openphone.xrc -c -o openphone.cxx
41
42
43
44STDCCFLAGS += `wx-config --cxxflags`
45
46LDFLAGS += `wx-config  --libs`
47
48include $(PTLIBDIR)/make/ptlib.mak
49
50
51