Sophie

Sophie

distrib > Mandriva > 2006.0 > i586 > by-pkgid > f991ed2d565451d4c13b5c7fca6ecab1 > files > 896

libwxgtk2.4-devel-2.4.2-8mdk.i586.rpm

#
# File:		Makefile for samples
# Author:	Robert Roebling
# Created:	1999
# Updated:	
# Copyright:	(c) 1998 Robert Roebling
#
# This makefile requires a Unix version of wxWindows
# to be installed on your system. This is most often
# done typing "make install" when using the complete
# sources of wxWindows or by installing the two
# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
# under Linux.
#

CXX = $(shell wx-config --cxx)

PROGRAM = printing

$(PROGRAM): $(PROGRAM).o
	$(CXX) -o $(PROGRAM) \
	$(PROGRAM).o `wx-config --libs`

$(PROGRAM).o: $(PROGRAM).cpp
	$(CXX) `wx-config --cxxflags` -c $(PROGRAM).cpp

clean: 
	rm -f *.o $(PROGRAM)