]> git.saurik.com Git - wxWidgets.git/blame - samples/tab/makefile.unx
Fixed closing of program to work properly if PASS #1 failed for some reason. Before...
[wxWidgets.git] / samples / tab / makefile.unx
CommitLineData
8fef0a6e
RL
1# Purpose: makefile for tab example (Unix)
2# Created: 2000-03-15
a4294b78 3
8fef0a6e 4CC = gcc
a4294b78 5
8fef0a6e 6PROGRAM = tab
a4294b78 7
8fef0a6e 8OBJECTS = $(PROGRAM).o
a4294b78 9
8fef0a6e
RL
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
15 $(CC) -c `wx-config --cflags` -o $@ $<
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
20 $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
21
22clean:
23 rm -f *.o $(PROGRAM)