#
# Copyright (C) 1991 Texas Instruments Incorporated.
#
# Permission is granted to any individual or institution to use, copy, modify,
# and distribute this software, provided that this complete copyright and
# permission notice is maintained, intact, in all copies and supporting
# documentation.
#
# Texas Instruments Incorporated provides this software "as is" without
# express or implied warranty.
#

.SUFFIXES: .C .o .out .x

.C.o:
	$(CC) $(CCFLAGS) $(DEFINES) $(INCLUDES) $*.C

.o.x:
	$(CC) -o$*.x $*.o $(LIBRARYS)

.x.out:
	$*.x > $*.out $(ERROR)

summary: $(RESULTS)
	@$(ECHO) "======================="
	@for RESULT in $(RESULTS); do $(SEARCH) "Summary" $$RESULT; done
	@$(ECHO) "======================="

$(RESULTS): $(PROGRAMS)

$(PROGRAMS): $(OBJECTS)

all: summary

saber_src:
	#load $(CCFLAGS) $(INCLUDES) $(SRCS) $(LIBRARYS) 

saber_obj:
	#load $(CCINCLUDES) $(OBJS) $(LIBRARYS)

allclean clean:
	- $(RM) $(OBJECTS) $(PROGRAMS) $(RESULTS) $(BACKUPS)

alldepend depend: $(SOURCES) $(HEADERS)
	$(MKDEPEND) $(DEFINES) $(INCLUDES) $(SOURCES) $(HEADERS)

allinstall install:

alllink link:
