]> git.saurik.com Git - wxWidgets.git/blob - utils/dialoged/src/Makefile
wxToolTip part II
[wxWidgets.git] / utils / dialoged / src / Makefile
1 #
2 # File: Makefile
3 # Author: Robert Roebling
4 # Created: 1999
5 # Updated:
6 # Copyright: (c) 1998 Robert Roebling
7 #
8 # Makefile for Dialog Editor (GTK version)
9 #
10 # This makefile requires wxWindows/GTK to be
11 # installed (possibly using "make install")
12 # on your system.
13 #
14
15 CC = g++
16
17 DialogEd: dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
18 symbtabl.o winprop.o winstyle.o
19 $(CC) -o DialogEd \
20 dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
21 symbtabl.o winprop.o winstyle.o `wx-config --libs`
22
23 dialoged.o: dialoged.cpp
24 $(CC) `wx-config --cflags` -c dialoged.cpp
25
26 dlghndlr.o: dlghndlr.cpp
27 $(CC) `wx-config --cflags` -c dlghndlr.cpp
28
29 edlist.o: edlist.cpp
30 $(CC) `wx-config --cflags` -c edlist.cpp
31
32 edtree.o: edtree.cpp
33 $(CC) `wx-config --cflags` -c edtree.cpp
34
35 reseditr.o: reseditr.cpp
36 $(CC) `wx-config --cflags` -c reseditr.cpp
37
38 reswrite.o: reswrite.cpp
39 $(CC) `wx-config --cflags` -c reswrite.cpp
40
41 symbtabl.o: symbtabl.cpp
42 $(CC) `wx-config --cflags` -c symbtabl.cpp
43
44 winprop.o: winprop.cpp
45 $(CC) `wx-config --cflags` -c winprop.cpp
46
47 winstyle.o: winstyle.cpp
48 $(CC) `wx-config --cflags` -c winstyle.cpp
49
50 clean:
51 rm -f *.o DialogEd