2000-01-19 16:43:12 +00:00
|
|
|
#
|
|
|
|
# File: Makefile.in
|
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1998
|
|
|
|
# Updated:
|
|
|
|
# Copyright: (c) 1998 Julian Smart
|
|
|
|
#
|
|
|
|
# "%W% %G%"
|
|
|
|
#
|
|
|
|
# Makefile for ipc example (UNIX).
|
|
|
|
|
2000-01-31 18:31:18 +00:00
|
|
|
top_srcdir = @top_srcdir@/..
|
2000-01-19 16:43:12 +00:00
|
|
|
top_builddir = ../..
|
|
|
|
program_dir = samples/ipc
|
|
|
|
|
2001-11-23 21:28:12 +00:00
|
|
|
OBJECTS =$(PROGRAM).o
|
|
|
|
DEPFILES=$(PROGRAM).d
|
2000-01-19 16:43:12 +00:00
|
|
|
|
2001-11-23 21:28:12 +00:00
|
|
|
# this target can't be called all
|
|
|
|
all-both:
|
|
|
|
$(MAKE) PROGRAM=client all
|
|
|
|
$(MAKE) PROGRAM=server all
|
2000-01-19 16:43:12 +00:00
|
|
|
|
2001-11-23 21:28:12 +00:00
|
|
|
# this target can't be called clean
|
|
|
|
clean-both:
|
|
|
|
$(MAKE) PROGRAM=client clean
|
|
|
|
$(MAKE) PROGRAM=server clean
|
2000-01-19 16:43:12 +00:00
|
|
|
|
2001-11-23 21:28:12 +00:00
|
|
|
include ../../src/makeprog.env
|
2000-01-19 16:43:12 +00:00
|
|
|
|
2002-01-25 11:31:21 +00:00
|
|
|
@IF_GNU_MAKE@-include $(DEPFILES)
|