fixed Makefile, added .distr

This commit is contained in:
eck 1989-12-18 16:06:47 +00:00
parent dc2dd991c6
commit 2a15fcf645
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,4 @@
LIST
Makefile
char.tab
genfiles.c

View file

@ -5,9 +5,19 @@ CFLAGS=-L -LIB
.e.o:
$(CC) $(CFLAGS) -c -o $@ $*.e
clean:
rm -rf isalnum.o isalpha.o iscntrl.o isdigit.o isgraph.o \
islower.o isprint.o ispunct.o isspace.o isupper.o \
isxdigit.o isascii.o tolower.o toupper.o chartab.o \
isalnum.c isalpha.c iscntrl.c isdigit.c isgraph.c \
islower.c isprint.c ispunct.c isspace.c isupper.c \
isxdigit.c isascii.c tolower.c toupper.c chartab.c \
genfiles OLIST
# genfiles should not be compiled with $(CC) because we might be
# cross-compiling, in which case $(CC) does not yield a runnable object.
genfiles: genfiles.c
$(CC) genfiles.c -o genfiles
cc genfiles.c -o genfiles
chartab.c: char.tab
tabgen -fchar.tab > chartab.c