]> git.saurik.com Git - wxWidgets.git/blame - samples/minifram/makefile.unx
wxMAC added
[wxWidgets.git] / samples / minifram / makefile.unx
CommitLineData
14057bf4
RL
1# Purpose: makefile for minifram example (Unix)
2# Created: 2000-03-15
e9093718 3
a6f762a6 4CXX = $(shell wx-config --cxx)
e9093718 5
14057bf4 6PROGRAM = minifram
e9093718
RR
7
8OBJECTS = $(PROGRAM).o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
a6f762a6 15 $(CXX) -c `wx-config --cxxflags` -o $@ $<
e9093718
RR
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
a6f762a6 20 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
e9093718 21
14057bf4 22clean:
e9093718 23 rm -f *.o $(PROGRAM)