]> git.saurik.com Git - wxWidgets.git/blame - utils/dialoged/src/Makefile
Committing in .
[wxWidgets.git] / utils / dialoged / src / Makefile
CommitLineData
3fd528b9
RR
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
15CC = g++
16
17DialogEd: 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
23dialoged.o: dialoged.cpp
24 $(CC) `wx-config --cflags` -c dialoged.cpp
25
26dlghndlr.o: dlghndlr.cpp
27 $(CC) `wx-config --cflags` -c dlghndlr.cpp
28
29edlist.o: edlist.cpp
30 $(CC) `wx-config --cflags` -c edlist.cpp
31
32edtree.o: edtree.cpp
33 $(CC) `wx-config --cflags` -c edtree.cpp
34
35reseditr.o: reseditr.cpp
36 $(CC) `wx-config --cflags` -c reseditr.cpp
37
38reswrite.o: reswrite.cpp
39 $(CC) `wx-config --cflags` -c reswrite.cpp
40
41symbtabl.o: symbtabl.cpp
42 $(CC) `wx-config --cflags` -c symbtabl.cpp
43
44winprop.o: winprop.cpp
45 $(CC) `wx-config --cflags` -c winprop.cpp
46
47winstyle.o: winstyle.cpp
48 $(CC) `wx-config --cflags` -c winstyle.cpp
49
50clean:
51 rm -f *.o DialogEd