]> git.saurik.com Git - wxWidgets.git/blame - samples/ipc/Makefile.in
don't log mouse events by default
[wxWidgets.git] / samples / ipc / Makefile.in
CommitLineData
954e4e98
GRG
1#
2# File: Makefile.in
3# Author: Julian Smart
4# Created: 1998
5# Updated:
6# Copyright: (c) 1998 Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile for ipc example (UNIX).
11
48fe8374 12top_srcdir = @top_srcdir@/..
954e4e98
GRG
13top_builddir = ../..
14program_dir = samples/ipc
15# the comment at the end of the next line is needed because otherwise autoconf
16# would remove this line completely - it contains a built-in hack to remove
17# any VPATH assignment not containing ':'
18VPATH = @PATH_IFS@$(top_srcdir)/samples/ipc # ':' for autoconf
19
20# Clears all default suffixes
21.SUFFIXES: .o .cpp .c .cxx
22
23.cpp.o :
3a922bb4 24 $(CXX) -c $(CXXFLAGS) -o $@ $<
954e4e98
GRG
25
26# Set defaults from configure
27include ../../src/make.env
28
29all: client server
30
31client: client.o ../../lib/@WX_TARGET_LIBRARY@
3a922bb4 32 $(CXX) $(LDFLAGS) -o client client.o $(LDLIBS)
954e4e98
GRG
33
34server: server.o ../../lib/@WX_TARGET_LIBRARY@
3a922bb4 35 $(CXX) $(LDFLAGS) -o server server.o $(LDLIBS)
954e4e98
GRG
36
37clean:
38 rm -f $(OBJECTS) $(PROGRAM) core
39