]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/dialoged/src/Makefile
bug fixes
[wxWidgets.git] / utils / dialoged / src / Makefile
index e87123793d4695de3811f1348744ffeda2a24fd9..d754615f738c5ebc8d3370856d51d28e79370fe6 100644 (file)
@@ -1 +1,51 @@
-include ../../../install/unix/setup/general/makedirs
+#
+# File:                Makefile
+# Author:      Robert Roebling
+# Created:     1999
+# Updated:     
+# Copyright:   (c) 1998 Robert Roebling
+#
+# Makefile for Dialog Editor (GTK version)
+#
+# This makefile requires wxWindows/GTK to be 
+# installed (possibly using "make install")
+# on your system.
+#
+
+CC = g++
+
+DialogEd: dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
+       symbtabl.o winprop.o winstyle.o
+       $(CC) -o DialogEd \
+       dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
+       symbtabl.o winprop.o winstyle.o `wx-config --libs`
+
+dialoged.o: dialoged.cpp
+       $(CC) `wx-config --cflags` -c dialoged.cpp
+
+dlghndlr.o: dlghndlr.cpp
+       $(CC) `wx-config --cflags` -c dlghndlr.cpp
+
+edlist.o: edlist.cpp
+       $(CC) `wx-config --cflags` -c edlist.cpp
+
+edtree.o: edtree.cpp
+       $(CC) `wx-config --cflags` -c edtree.cpp
+
+reseditr.o: reseditr.cpp
+       $(CC) `wx-config --cflags` -c reseditr.cpp
+
+reswrite.o: reswrite.cpp
+       $(CC) `wx-config --cflags` -c reswrite.cpp
+
+symbtabl.o: symbtabl.cpp
+       $(CC) `wx-config --cflags` -c symbtabl.cpp
+
+winprop.o: winprop.cpp
+       $(CC) `wx-config --cflags` -c winprop.cpp
+
+winstyle.o: winstyle.cpp
+       $(CC) `wx-config --cflags` -c winstyle.cpp
+
+clean: 
+       rm -f *.o DialogEd