]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/embedded/makefile.unx
fix compilation problem when wxUSE_FSVOLUME==0 after last commit: declare wxIsDriveAv...
[wxWidgets.git] / wxPython / samples / embedded / makefile.unx
CommitLineData
a2426843
RD
1#
2# Makefile for Unix
3#
4# This makefile requires a Unix version of wxWindows
5# to be installed on your system. This is most often
6# done typing "make install" when using the complete
7# sources of wxWindows or by installing the two
8# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
9# under Linux.
10#
11
12PROGRAM = embedded
13OBJECTS = $(PROGRAM).o
14
60bfdd15
RD
15WX_CFG = wx-config
16PYVER = 2.4
6b7e0a86 17
60bfdd15
RD
18EXTRAINC=-I../../include -I/usr/include/python$(PYVER)
19EXTRALIB=-L/usr/lib/python$(PYVER)/config -lpython$(PYVER)
6b7e0a86 20CXX = $(shell $(WX_CFG) --cxx)
a2426843
RD
21
22
23.SUFFIXES: .o .cpp
24
25.cpp.o :
6b7e0a86 26 $(CXX) -c -g `$(WX_CFG) --cxxflags` $(EXTRAINC) -o $@ $<
a2426843
RD
27
28all: $(PROGRAM)
29
30$(PROGRAM): $(OBJECTS)
6b7e0a86 31 $(CXX) -g -o $(PROGRAM) $(OBJECTS) `$(WX_CFG) --libs` $(EXTRALIB)
a2426843
RD
32
33clean:
34 rm -f *.o $(PROGRAM)