]> git.saurik.com Git - wxWidgets.git/blame - samples/db/makefile.unx
Baked files with Bakefile 0.1.2 (Mac OS 10.3 Python 2.3)
[wxWidgets.git] / samples / db / makefile.unx
CommitLineData
cb148def
RR
1#
2# File: Makefile for samples
3# Author: Robert Roebling
4# Created: 1999
5# Updated:
6# Copyright: (c) 1998 Robert Roebling
7#
8# This makefile requires a Unix version of wxWindows
9# to be installed on your system. This is most often
10# done typing "make install" when using the complete
11# sources of wxWindows or by installing the two
12# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
13# under Linux.
14#
15
e9093718
RR
16PROGRAM = dbtest
17
a6f762a6 18CXX = $(shell wx-config --cxx)
cb148def 19
099287b9 20OBJECTS = $(PROGRAM).o listdb.o
e9093718
RR
21
22# implementation
23
24.SUFFIXES: .o .cpp
25
26.cpp.o :
a6f762a6 27 $(CXX) -c `wx-config --cxxflags` -o $@ $<
cb148def 28
e9093718 29all: $(PROGRAM)
cb148def 30
e9093718 31$(PROGRAM): $(OBJECTS)
a6f762a6 32 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
cb148def
RR
33
34clean:
35 rm -f *.o $(PROGRAM)