home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / locale / numeric / Makefile < prev    next >
Encoding:
Makefile  |  1994-03-18  |  379 b   |  25 lines

  1. SHELL    = /bin/sh
  2.  
  3. CFLAGS    = -O
  4. LFLAGS    = -8
  5. YFLAGS    = -d
  6.  
  7. OBJS    = mknumeric.o parse.o lexer.o
  8.  
  9. LIBS    = -lfl
  10.  
  11. mknumeric:    ${OBJS}
  12.     ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}
  13.  
  14. lexer.o:    lexer.l parse.o
  15.  
  16. clean:
  17.     rm -f *.output *.tab.c *.tab.h *.o core nohup.out LC_*
  18.  
  19. run:
  20.     mknumeric example
  21.  
  22. install:    mknumeric
  23.     install -c -m 555 mknumeric /usr/bin
  24.     install -c -m 444 mknumeric.1 /usr/man/man1
  25.