X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a6f762a646e1288dcc4be6fc9ccc22d9a88c2a0f..7c5190745f8d6362354aa9018a3f0867990c4ac6:/samples/ipc/makefile.unx?ds=sidebyside diff --git a/samples/ipc/makefile.unx b/samples/ipc/makefile.unx index e344ac0881..f64f8bde60 100644 --- a/samples/ipc/makefile.unx +++ b/samples/ipc/makefile.unx @@ -1,25 +1,81 @@ -# Purpose: makefile for ipc example (Unix) -# Created: 2000-03-14 -# hand hacked from template file by Ron +# ========================================================================= +# This makefile was generated by +# Bakefile 0.2.1 (http://bakefile.sourceforge.net) +# Do not modify, all changes will be overwritten! +# ========================================================================= -CXX = $(shell wx-config --cxx) -PROGRAMS = client server -# implementation +# ------------------------------------------------------------------------- +# These are configurable options: +# ------------------------------------------------------------------------- -.SUFFIXES: .o .cpp +# C++ compiler +CXX = g++ -.cpp.o : - $(CXX) -c `wx-config --cxxflags` -o $@ $< +# Standard flags for C++ +CXXFLAGS = -all: $(PROGRAMS) +# Standard preprocessor flags (common for CC and CXX) +CPPFLAGS = -client: client.o - $(CXX) -o $@ $< `wx-config --libs` +# Standard linker flags +LDFLAGS = -server: server.o - $(CXX) -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