]> git.saurik.com Git - wxWidgets.git/blame - demos/life/makefile.unx
set up for OpenVMS richtext & regex and add more samples in compile cascade
[wxWidgets.git] / demos / life / makefile.unx
CommitLineData
1e8d2f69
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
a6f762a6 16CXX = $(shell wx-config --cxx)
1e8d2f69
RR
17
18PROGRAM = life
19
f6bcfd97 20OBJECTS = $(PROGRAM).o dialogs.o game.o reader.o
1e8d2f69
RR
21
22# implementation
23
24.SUFFIXES: .o .cpp
25
26.cpp.o :
a6f762a6 27 $(CXX) -c `wx-config --cxxflags` -o $@ $<
1e8d2f69
RR
28
29all: $(PROGRAM)
30
31$(PROGRAM): $(OBJECTS)
a6f762a6 32 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
1e8d2f69
RR
33
34clean:
35 rm -f *.o $(PROGRAM)