blob: 30bef852bbf1f37666108afbf01951e796d5a4de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# $Source$
# $Author$
# $Id$
#
# Copyright 1990 by the Massachusetts Institute of Technology.
# All Rights Reserved.
#
# Export of this software from the United States of America is assumed
# to require a specific license from the United States Government.
# It is the responsibility of any person or organization contemplating
# export to obtain such a license before exporting.
#
# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
# distribute this software and its documentation for any purpose and
# without fee is hereby granted, provided that the above copyright
# notice appear in all copies and that both that copyright notice and
# this permission notice appear in supporting documentation, and that
# the name of M.I.T. not be used in advertising or publicity pertaining
# to distribution of the software without specific, written prior
# permission. M.I.T. makes no representations about the suitability of
# this software for any purpose. It is provided "as is" without express
# or implied warranty.
#
#
NormalLibraryObjectRule()
OBJS = scc_close.o scc_destry.o scc_eseq.o \
scc_gennew.o scc_getnam.o scc_gprin.o scc_init.o \
scc_nseq.o scc_read.o scc_reslv.o scc_retrv.o \
scc_sseq.o scc_store.o scc_skip.o scc_ops.o scc_write.o \
scc_sflags.o scc_defops.o scc_errs.o scc_maybe.o
SRCS = $(SRCDIR)scc_close.c $(SRCDIR)scc_destry.c $(SRCDIR)scc_eseq.c \
$(SRCDIR)scc_gennew.c $(SRCDIR)scc_getnam.c $(SRCDIR)scc_gprin.c \
$(SRCDIR)scc_init.c $(SRCDIR)scc_nseq.c $(SRCDIR)scc_read.c \
$(SRCDIR)scc_reslv.c $(SRCDIR)scc_retrv.c $(SRCDIR)scc_sseq.c \
$(SRCDIR)scc_store.c $(SRCDIR)scc_skip.c $(SRCDIR)scc_ops.c \
$(SRCDIR)scc_write.c $(SRCDIR)scc_sflags.c $(SRCDIR)scc_defops.c \
$(SRCDIR)scc_errs.c $(SRCDIR)scc_maybe.c
all:: ${OBJS}
SubdirLibraryRule($(OBJS))
DependTarget()
test: ${OBJS} scc_test.o
${CC} -o test ${OBJS} scc_test.o
|