-#
-# File: makefile.unx
-# Author: Julian Smart
-# Created: 1993
-# Updated:
-# Copyright: (c) 1993, AIAI, University of Edinburgh
-#
-# "%W% %G%"
-#
-# Makefile for dialogs example (UNIX).
+# =========================================================================
+# This makefile was generated by
+# Bakefile 0.2.1 (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)/dialogs.$(OBJSUFF)
+# -------------------------------------------------------------------------
+# These are configurable options:
+# -------------------------------------------------------------------------
-.SUFFIXES:
+# C++ compiler
+CXX = g++
-all: $(OBJDIR) dialogs$(GUISUFFIX)
+# Standard flags for C++
+CXXFLAGS =
-wx:
+# Standard preprocessor flags (common for CC and CXX)
+CPPFLAGS =
+# Standard linker flags
+LDFLAGS =
-motif:
- $(MAKE) -f makefile.unx GUISUFFIX=_motif GUI=-Dwx_motif GUISUFFIX=_motif OPT='$(OPT)' LDLIBS='$(MOTIFLDLIBS)' WXLIB=$(WXDIR)/lib/libwx_motif.a OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)' XVIEW_LINK=
+# Location and arguments of wx-config script
+WX_CONFIG = wx-config
-xview:
- cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx xview
- $(MAKE) -f makefile.unx GUI=-Dwx_xview GUISUFFIX=_ol CC=$(CC) OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)'
+# C++ flags to use with wxWidgets code
+WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
-hp:
- cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx hp
- $(MAKE) -f makefile.unx GUI=-Dwx_motif GUISUFFIX=_hp CC=CC DEBUG='$(DEBUG)' WARN='-w' \
- XINCLUDE='$(HPXINCLUDE)' XLIB='$(HPXLIB)' XVIEW_LINK='' LDLIBS='$(HPLDLIBS)'
-$(OBJDIR):
- mkdir $(OBJDIR)
-dialogs$(GUISUFFIX): $(OBJDIR)/dialogs.$(OBJSUFF) $(WXLIB)
- $(CC) $(LDFLAGS) -o dialogs$(GUISUFFIX) $(OBJDIR)/dialogs.$(OBJSUFF) $(XVIEW_LINK) $(LDLIBS)
+# -------------------------------------------------------------------------
+# Do not modify the rest of this file!
+# -------------------------------------------------------------------------
-$(OBJDIR)/dialogs.$(OBJSUFF): dialogs.$(SRCSUFF)
- $(CC) -c $(CPPFLAGS) -o $@ dialogs.$(SRCSUFF)
+### Variables: ###
-clean_motif:
- $(MAKE) -f makefile.unx GUISUFFIX=_motif cleanany
+CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
+DIALOGS_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+DIALOGS_OBJECTS = \
+ dialogs_dialogs.o
-clean_ol:
- $(MAKE) -f makefile.unx GUISUFFIX=_ol cleanany
+### Conditionally set variables: ###
-clean_hp:
- $(MAKE) -f makefile.unx GUISUFFIX=_hp cleanany
-cleanany:
- rm -f $(OBJECTS) dialogs$(GUISUFFIX) core
+
+### Targets: ###
+
+all: dialogs
+
+install: all
+
+uninstall:
+
+clean:
+ rm -f ./*.o
+ rm -f ./*.d
+ rm -f dialogs
+
+dialogs: $(DIALOGS_OBJECTS)
+ $(CXX) -o $@ $(DIALOGS_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs adv,html,xml,core,base`
+
+dialogs_dialogs.o: ./dialogs.cpp
+ $(CXX) -c -o $@ $(DIALOGS_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d