installed makefiles

This commit is contained in:
Jeff Hill
1996-07-24 22:26:29 +00:00
parent 276dd19293
commit dd8fa0e290
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
TOP=../../..
include $(TOP)/config/CONFIG_BASE
include $(TOP)/config/RULES_ARCHS

View File

@@ -0,0 +1,36 @@
TOP = ../../../..
include $(TOP)/config/CONFIG_BASE
SRCS.c += ../resourceLibTest.cc
SRCS.c += ../tsDLListBench.cc
SRCS.c += ../tsDLListTest.cc
SRCS.c += ../tsSLListBench.cc
SRCS.c += ../tsSLListTest.cc
TARGETS += resourceLibTest
TARGETS += tsDLListBench
TARGETS += tsDLListTest
TARGETS += tsSLListTest
include $(TOP)/config/RULES.Unix
ifdef fred
all: resourceLibTest tsDLListBench tsDLListTest tsSLListBench tsSLListTest
resourceLibTest: resourceLibTest.o
$(LINK.cc) -o $@ $<
tsDLListBench: tsDLListBench.o
$(LINK.cc) -o $@ $<
tsDLListTest: tsDLListTest.o
$(LINK.cc) -o $@ $<
tsSLListBench: tsSLListBench.o
$(LINK.cc) -o $@ $<
tsSLListTest: tsSLListTest.o
$(LINK.cc) -o $@ $<
endif

View File

@@ -0,0 +1,7 @@
TOP=../../..
include $(TOP)/config/CONFIG_BASE
include $(TOP)/config/RULES_ARCHS