home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Tex / c++2l.zoo / Makefile < prev    next >
Makefile  |  1990-04-30  |  575b  |  31 lines

  1. FLAVOR =
  2.  
  3. CC = gcc
  4. CFLAGS = -g $(FLAVOR)
  5. LEX = flex
  6.  
  7.  
  8. .PHONY: all workaround C_PLUSPLUS ANSI_C HAS_NAME
  9.  
  10. all:    c++2latex
  11.  
  12. C_PLUSPLUS: make c++2latex FLAVOR=-DC_PLUSPLUS
  13.  
  14. ANSI_C:
  15.     make c2latex FLAVOR=-DANSI_C
  16.  
  17. USE_NAME:
  18.     make c++2latex FLAVOR=-DUSE_NAME
  19.  
  20. workaround: c++2latex.l
  21.     mv -f c++2latex.l c++2latex.full
  22.     sed > c++2latex.l -e '/^###/w c++2latex.copyright' \
  23.                           -e '/^###/d'  c++2latex.full
  24.          
  25. c2latex.c: c++2latex.c
  26.     mv c++2latex.c c2latex.c
  27.  
  28. c++2latex:    c++2latex.o getopt1.o getopt.o version.o
  29.  
  30. c2latex:    c2latex.o getopt1.o getopt.o version.o
  31.