]> git.saurik.com Git - wxWidgets.git/blame - samples/toolbar/makefile.unx
applied Watcom thread patches and made thread entry point stdcall for all compilers
[wxWidgets.git] / samples / toolbar / makefile.unx
CommitLineData
367e57ec
RL
1# Purpose: makefile for toolbar example (Unix)
2# Created: 2000-03-14
3
4CC = gcc
5
6PROGRAM = toolbar
7
8OBJECTS = $(PROGRAM).o
9
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)