]> git.saurik.com Git - wxWidgets.git/blame - samples/notebook/makefile.unx
added wxGet/Set/UnsetEnv() for Unix
[wxWidgets.git] / samples / notebook / makefile.unx
CommitLineData
b2f757f9
RL
1# Purpose: makefile for notebook example (Unix)
2# Created: 2000-03-15
1e8d2f69
RR
3
4CC = gcc
5
b2f757f9 6PROGRAM = notebook
1e8d2f69
RR
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
b2f757f9 22clean:
1e8d2f69 23 rm -f *.o $(PROGRAM)