-#
-# File: makefile.unx
-# Author: Julian Smart
-# Created: 1993
-# Updated:
-# Copyright: (c) 1993, AIAI, University of Edinburgh
-#
-# "%W% %G%"
-#
-# Makefile for docview example (UNIX).
+# =========================================================================
+# This makefile was generated by
+# Bakefile 0.2.0 (http://bakefile.sourceforge.net)
+# Do not modify, all changes will be overwritten!
+# =========================================================================
-WXDIR = ../..
-# All common UNIX compiler flags and options are now in
-# this central makefile.
-include $(WXDIR)/src/make.env
-OBJECTS = $(OBJDIR)/docview.$(OBJSUFF) $(OBJDIR)/view.$(OBJSUFF) $(OBJDIR)/doc.$(OBJSUFF)
+# -------------------------------------------------------------------------
+# These are configurable options:
+# -------------------------------------------------------------------------
-.SUFFIXES:
+# C++ compiler
+CXX = g++
-all: $(OBJDIR) wx$(GUISUFFIX) docview$(GUISUFFIX)
+# Standard flags for C++
+CXXFLAGS =
-wx_motif:
- cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx motif
+# Standard preprocessor flags (common for CC and CXX)
+CPPFLAGS =
-wx_ol:
- cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx xview
-motif:
- $(MAKE) -f makefile.unx GUISUFFIX=_motif GUI=-Dwx_motif GUISUFFIX=_motif OPT='$(OPT)' LDLIBS='$(MOTIFLDLIBS)' OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)' XVIEW_LINK=
+# Standard linker flags
+LDFLAGS =
-xview:
- $(MAKE) -f makefile.unx GUI=-Dwx_xview GUISUFFIX=_ol CC=$(CC) OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)'
+# Location and arguments of wx-config script
+WX_CONFIG = wx-config
-hp:
- $(MAKE) -f makefile,unx GUI=-Dwx_motif GUISUFFIX=_hp CC=CC DEBUG='$(DEBUG)' WARN='-w' \
- XINCLUDE='$(HPXINCLUDE)' XLIB='$(HPXLIB)' XVIEW_LINK='' LDLIBS='$(HPLDLIBS)'
+# C++ flags to use with wxWidgets code
+WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
-$(OBJDIR):
- mkdir $(OBJDIR)
-docview$(GUISUFFIX): $(OBJECTS) $(WXLIB)
- $(CC) $(LDFLAGS) -o docview$(GUISUFFIX) $(OBJECTS) $(XVIEW_LINK) $(LDLIBS)
-$(OBJDIR)/docview.$(OBJSUFF): docview.$(SRCSUFF) docview.h doc.h view.h
- $(CC) -c $(CPPFLAGS) -o $@ docview.$(SRCSUFF)
+# -------------------------------------------------------------------------
+# Do not modify the rest of this file!
+# -------------------------------------------------------------------------
-$(OBJDIR)/doc.$(OBJSUFF): doc.$(SRCSUFF) doc.h
- $(CC) -c $(CPPFLAGS) -o $@ doc.$(SRCSUFF)
+### Variables: ###
-$(OBJDIR)/view.$(OBJSUFF): view.$(SRCSUFF) view.h
- $(CC) -c $(CPPFLAGS) -o $@ view.$(SRCSUFF)
+CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
+DOCVIEW_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+DOCVIEW_OBJECTS = \
+ docview_docview.o \
+ docview_doc.o \
+ docview_view.o
-clean_motif:
- $(MAKE) -f makefile.unx GUISUFFIX=_motif cleanany
+### Conditionally set variables: ###
-clean_ol:
- $(MAKE) -f makefile.unx GUISUFFIX=_ol cleanany
-clean_hp:
- $(MAKE) -f makefile.unx GUISUFFIX=_hp cleanany
-cleanany:
- rm -f $(OBJECTS) docview$(GUISUFFIX) core
+### Targets: ###
+
+all: docview
+
+install: all
+
+uninstall:
+
+clean:
+ rm -f ./*.o
+ rm -f ./*.d
+ rm -f docview
+
+docview: $(DOCVIEW_OBJECTS)
+ $(CXX) -o $@ $(DOCVIEW_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,base`
+
+docview_docview.o: ./docview.cpp
+ $(CXX) -c -o $@ $(DOCVIEW_CXXFLAGS) $(CPPDEPS) $<
+
+docview_doc.o: ./doc.cpp
+ $(CXX) -c -o $@ $(DOCVIEW_CXXFLAGS) $(CPPDEPS) $<
+
+docview_view.o: ./view.cpp
+ $(CXX) -c -o $@ $(DOCVIEW_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d