Makefile 525 B

123456789101112131415
  1. clean:
  2. rm -f isalnum.o isalpha.o iscntrl.o isdigit.o isgraph.o \
  3. islower.o isprint.o ispunct.o isspace.o isupper.o \
  4. isxdigit.o isascii.o tolower.o toupper.o chartab.o \
  5. isalnum.c isalpha.c iscntrl.c isdigit.c isgraph.c \
  6. islower.c isprint.c ispunct.c isspace.c isupper.c \
  7. isxdigit.c isascii.c chartab.c \
  8. OLIST
  9. chartab.c: char.tab
  10. tabgen -fchar.tab > chartab.c
  11. isalnum.c isalpha.c iscntrl.c isdigit.c isgraph.c islower.c isprint.c \
  12. ispunct.c isspace.c isupper.c isxdigit.c isascii.c: genfiles
  13. sh genfiles