~ubuntu-dev/wxwidgets2.6/upstream-debian

« back to all changes in this revision

Viewing changes to samples/treectrl/makefile.unx

  • Committer: Daniel T Chen
  • Date: 2006-06-26 10:15:11 UTC
  • Revision ID: crimsun@ubuntu.com-20060626101511-a4436cec4c6d9b35
ImportĀ DebianĀ 2.6.3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Purpose: makefile for treectrl example (Unix)
 
2
# Created: 2000-03-15
 
3
 
 
4
CXX = $(shell wx-config --cxx)
 
5
 
 
6
PROGRAM = treetest
 
7
 
 
8
OBJECTS = $(PROGRAM).o
 
9
 
 
10
# implementation
 
11
 
 
12
.SUFFIXES:      .o .cpp
 
13
 
 
14
.cpp.o :
 
15
        $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
16
 
 
17
all:    $(PROGRAM)
 
18
 
 
19
$(PROGRAM):     $(OBJECTS)
 
20
        $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
21
 
 
22
clean:
 
23
        rm -f *.o $(PROGRAM)