diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-03-25 01:23:52 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-03-25 01:23:52 +0000 |
commit | 72f0c86eb3ecdda4cab53213302fad645bc571f0 (patch) | |
tree | a78b285260bc369da116c1d98e4f5daa9f2441f9 /src/GNUmakefile | |
parent | 2d704117349864405f1c749b40bdd9d6f819ca03 (diff) |
Cleaned up a bit by adding a base Window class.
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r-- | src/GNUmakefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile index 1a4c078..4ab212c 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: GNUmakefile,v 1.3 2005-03-24 02:09:12 ianc Exp $ +# $Id: GNUmakefile,v 1.4 2005-03-25 01:23:52 ianc Exp $ # @@ -55,7 +55,8 @@ SOURCES = autocheck.cpp \ dialog.cpp \ text.cpp \ static.cpp \ - debug.cpp + debug.cpp \ + window.cpp HEADERS = w32dlib/*.h @@ -73,6 +74,10 @@ $(TARGET): $(OBJECTS) GNUMakefile doc: $(DOCDIR)/html/index.html +cleandoc: + -rm -rf $(DOCDIR)/* + + $(DOCDIR)/html/index.html: $(HEADERS) -rm -rf $(DOCDIR)/* cd w32dlib ; doxygen |