fixed Makefile, added .distr
authoreck <none@none>
Mon, 18 Dec 1989 16:06:47 +0000 (16:06 +0000)
committereck <none@none>
Mon, 18 Dec 1989 16:06:47 +0000 (16:06 +0000)
lang/cem/libcc.ansi/ctype/.distr [new file with mode: 0644]
lang/cem/libcc.ansi/ctype/Makefile

diff --git a/lang/cem/libcc.ansi/ctype/.distr b/lang/cem/libcc.ansi/ctype/.distr
new file mode 100644 (file)
index 0000000..3c80070
--- /dev/null
@@ -0,0 +1,4 @@
+LIST
+Makefile
+char.tab
+genfiles.c
index c4aeb17..b019c55 100644 (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