home *** CD-ROM | disk | FTP | other *** search
/ ftp.shrubbery.net / 2015-02-07.ftp.shrubbery.net.tar / ftp.shrubbery.net / pub / foad / foad-0.3.tar.gz / foad-0.3.tar / foad-0.3 / Makefile.am < prev    next >
Makefile  |  2003-09-22  |  558b  |  23 lines

  1. ## Process this file with automake to produce Makefile.in
  2. ## A Makefile.in is supplied, in case you do not have automake.
  3.  
  4. #AUTOMAKE_OPTIONS=foreign no-dependencies
  5. AUTOMAKE_OPTIONS=foreign
  6.  
  7. @SET_MAKE@
  8.  
  9. bin_PROGRAMS = foad
  10. foad_SOURCES = foad.c parser.y lexer.l
  11. noinst_HEADERS = foad.h
  12. man_MANS = foad.1
  13.  
  14. AM_YFLAGS = -d
  15.  
  16. EXTRA_DIST = $(man_MANS) CHANGES
  17.  
  18. # w/o this def, automake dists parser.c and lexer.c, damn it!
  19. nodist_DIST_COMMON = parser.c parser.h lexer.c
  20.  
  21. # no idea why automake screws up cleaning these targets
  22. CLEANFILES=parser.h parser.c lexer.c
  23.