-# Purpose: makefile for ipc example (Unix)
-# Created: 2000-03-14
-# hand hacked from template file by Ron <ron@debian.org>
+# =========================================================================
+# This makefile was generated by
+# Bakefile 0.2.1 (http://bakefile.sourceforge.net)
+# Do not modify, all changes will be overwritten!
+# =========================================================================
-CC = gcc
-PROGRAMS = client server
-# implementation
+# -------------------------------------------------------------------------
+# These are configurable options:
+# -------------------------------------------------------------------------
-.SUFFIXES: .o .cpp
+# C++ compiler
+CXX = g++
-.cpp.o :
- $(CC) -c `wx-config --cxxflags` -o $@ $<
+# Standard flags for C++
+CXXFLAGS =
-all: $(PROGRAMS)
+# Standard preprocessor flags (common for CC and CXX)
+CPPFLAGS =
-client: client.o
- $(CC) -o $@ $< `wx-config --libs`
+# Standard linker flags
+LDFLAGS =
-server: server.o
- $(CC) -o $@ $< `wx-config --libs`
+# Location and arguments of wx-config script
+WX_CONFIG = wx-config
-clean:
- rm -f *.o $(PROGRAMS)
+# C++ flags to use with wxWidgets code
+WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
+
+
+
+# -------------------------------------------------------------------------
+# Do not modify the rest of this file!
+# -------------------------------------------------------------------------
+
+### Variables: ###
+
+CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
+CLIENT_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+CLIENT_OBJECTS = \
+ client_client.o
+SERVER_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+SERVER_OBJECTS = \
+ server_server.o
+
+### Conditionally set variables: ###
+
+
+
+### Targets: ###
+
+all: client server
+
+install: all
+
+uninstall:
+
+clean:
+ rm -f ./*.o
+ rm -f ./*.d
+ rm -f client
+ rm -f server
+
+client: $(CLIENT_OBJECTS)
+ $(CXX) -o $@ $(CLIENT_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,net,base`
+
+server: $(SERVER_OBJECTS)
+ $(CXX) -o $@ $(SERVER_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,net,base`
+
+client_client.o: ./client.cpp
+ $(CXX) -c -o $@ $(CLIENT_CXXFLAGS) $(CPPDEPS) $<
+
+server_server.o: ./server.cpp
+ $(CXX) -c -o $@ $(SERVER_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d