40 lines
904 B
Makefile
40 lines
904 B
Makefile
|
#
|
||
|
# File: Makefile.in
|
||
|
# Author: Julian Smart
|
||
|
# Created: 1998
|
||
|
# Updated:
|
||
|
# Copyright: (c) 1998 Julian Smart
|
||
|
#
|
||
|
# "%W% %G%"
|
||
|
#
|
||
|
# Makefile for ipc example (UNIX).
|
||
|
|
||
|
top_srcdir = @top_srcdir@
|
||
|
top_builddir = ../..
|
||
|
program_dir = samples/ipc
|
||
|
# the comment at the end of the next line is needed because otherwise autoconf
|
||
|
# would remove this line completely - it contains a built-in hack to remove
|
||
|
# any VPATH assignment not containing ':'
|
||
|
VPATH = @PATH_IFS@$(top_srcdir)/samples/ipc # ':' for autoconf
|
||
|
|
||
|
# Clears all default suffixes
|
||
|
.SUFFIXES: .o .cpp .c .cxx
|
||
|
|
||
|
.cpp.o :
|
||
|
$(CC) -c $(CPPFLAGS) -o $@ $<
|
||
|
|
||
|
# Set defaults from configure
|
||
|
include ../../src/make.env
|
||
|
|
||
|
all: client server
|
||
|
|
||
|
client: client.o ../../lib/@WX_TARGET_LIBRARY@
|
||
|
$(CC) $(LDFLAGS) -o client client.o $(LDLIBS)
|
||
|
|
||
|
server: server.o ../../lib/@WX_TARGET_LIBRARY@
|
||
|
$(CC) $(LDFLAGS) -o server server.o $(LDLIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJECTS) $(PROGRAM) core
|
||
|
|