projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed a compilation error for VC++ 6
[wxWidgets.git]
/
samples
/
fractal
/
Makefile.in
diff --git
a/samples/fractal/Makefile.in
b/samples/fractal/Makefile.in
index f7da59979c3abc7bb5cb5a2e36577fee7509a8d3..28486d18b0557fcd9cf9429e965e4ba05d206477 100644
(file)
--- a/
samples/fractal/Makefile.in
+++ b/
samples/fractal/Makefile.in
@@
-1,26
+1,21
@@
-# WXXT base directory
-WXBASEDIR=@WXBASEDIR@
+#
+# File: Makefile.in
+# Author: Julian Smart
+# Created: 1998
+# Updated:
+# Copyright: (c) 1998 Julian Smart
+#
+# "%W% %G%"
+#
+# Makefile for fractal example (UNIX).
-# set the OS type for compilation
-OS=@OS@
-# compile a library only
-RULE=bin
+top_srcdir = @top_srcdir@
+top_builddir = ../..
+program_dir = samples/fractal
-# define library name
-BIN_TARGET=fractal
-# define library sources
-BIN_SRC=\
-fractal.cpp
+PROGRAM=fractal
-#define library objects
-BIN_OBJ=\
-fractal.o
+OBJECTS=$(PROGRAM).o
-# additional things needed to link
-BIN_LINK=
+include ../../src/makeprog.env
-# additional things needed to compile
-ADD_COMPILE=
-
-# include the definitions now
-include ../../../template.mak