Makefile Tutorial - Client Makefile Example

Source_Code/people_tcp_client Makefile

#....................................................................................
#:
#:Makefile for people_tcp_client
#: by: J. Kabara
#:
#: creation date: 1 January 1996
#: last modification date: 9 January 1998
#: version: 2.0
#....................................................................................
#
# definitions specific to this program

DEFINES = -DDEFSERV=\"5127\"

PROGRAM = people_tcp_client

OBJECTS = people_tcp_client.o

# include all the definitions from the primary Makefile
# by including that Makefile

include ../Makefile


S. M. Garver,Spring 1998