]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/ipc/makefile.unx
Update os2/ow makefiles.
[wxWidgets.git] / samples / ipc / makefile.unx
... / ...
CommitLineData
1# =========================================================================
2# This makefile was generated by
3# Bakefile 0.2.1 (http://bakefile.sourceforge.net)
4# Do not modify, all changes will be overwritten!
5# =========================================================================
6
7
8
9# -------------------------------------------------------------------------
10# These are configurable options:
11# -------------------------------------------------------------------------
12
13# C++ compiler
14CXX = g++
15
16# Standard flags for C++
17CXXFLAGS =
18
19# Standard preprocessor flags (common for CC and CXX)
20CPPFLAGS =
21
22# Standard linker flags
23LDFLAGS =
24
25# Location and arguments of wx-config script
26WX_CONFIG = wx-config
27
28# C++ flags to use with wxWidgets code
29WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
30
31
32
33# -------------------------------------------------------------------------
34# Do not modify the rest of this file!
35# -------------------------------------------------------------------------
36
37### Variables: ###
38
39CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
40CLIENT_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
41CLIENT_OBJECTS = \
42 client_client.o
43SERVER_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
44SERVER_OBJECTS = \
45 server_server.o
46
47### Conditionally set variables: ###
48
49
50
51### Targets: ###
52
53all: client server
54
55install: all
56
57uninstall:
58
59clean:
60 rm -f ./*.o
61 rm -f ./*.d
62 rm -f client
63 rm -f server
64
65client: $(CLIENT_OBJECTS)
66 $(CXX) -o $@ $(CLIENT_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,net,base`
67
68server: $(SERVER_OBJECTS)
69 $(CXX) -o $@ $(SERVER_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,net,base`
70
71client_client.o: ./client.cpp
72 $(CXX) -c -o $@ $(CLIENT_CXXFLAGS) $(CPPDEPS) $<
73
74server_server.o: ./server.cpp
75 $(CXX) -c -o $@ $(SERVER_CXXFLAGS) $(CPPDEPS) $<
76
77.PHONY: all install uninstall clean
78
79
80# Dependencies tracking:
81-include ./*.d