# # Makefile for the example programs. #======================================================================# FORE_INC = /net/at1/fore.new/fore/include FORE_LIB = /net/at1/fore.new/fore/lib SRC = sender.c receiver.c TARGETS = $(SRC:.c=) CPPFLAGS = -I$(FORE_INC) LDFLAGS = -L$(FORE_LIB) LDLIBS = -latm #======================================================================# all: $(TARGETS)