diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-03-28 01:42:58 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-03-28 01:42:58 +0000 |
commit | 82f1d860690dc0a2d0210db12344f7ea5e88b6a4 (patch) | |
tree | 517481a81e64cc70b5187ce6eeb20d8fa326fa54 /src/GNUmakefile | |
parent | 4f54380eb1f7574bf9cc147cb8870508da09e10c (diff) |
Added ComboBox. Also improved callback filtering and made controls auto register themselves.
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r-- | src/GNUmakefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile index 4ab212c..0bbfac0 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: GNUmakefile,v 1.4 2005-03-25 01:23:52 ianc Exp $ +# $Id: GNUmakefile,v 1.5 2005-03-28 01:42:58 ianc Exp $ # @@ -56,7 +56,8 @@ SOURCES = autocheck.cpp \ text.cpp \ static.cpp \ debug.cpp \ - window.cpp + window.cpp \ + combobox.cpp HEADERS = w32dlib/*.h @@ -90,9 +91,7 @@ $(DOCDIR)/html/index.html: $(HEADERS) clean: -rm -f $(TARGET) $(OBJECTS) depend.mak -depend: $(DEPEND) - -$(DEPEND): $(SOURCES) $(HEADERS) GNUMakefile +depend: @echo Dependencies updated.... $(CXX) -MM $(FLAGS) $(SOURCES) > $(DEPEND) |