Makefile.am 626 B

123456789101112131415161718192021
  1. ## Process this file with automake to produce Makefile.in
  2. bin_PROGRAMS = plot
  3. plot_SOURCES = plot.c fontlist.c
  4. plot_LDADD = ../lib/libcommon.a ../libplot/libplot.la
  5. INCLUDES = -I$(srcdir)/../include
  6. CLEANFILES = fontlist.c
  7. # remove executables installed by previous versions of the package
  8. OBSOLETEBINS = plot2plot plot2tek plot2hpgl plot2fig plot2ps plot2X
  9. install-exec-hook:
  10. -for f in $(OBSOLETEBINS) ; do rm -f $(bindir)/$$f; done
  11. fontlist.c: $(top_srcdir)/lib/fontlist.c
  12. @rm -f fontlist.c ; if $(LN_S) $(top_srcdir)/lib/fontlist.c fontlist.c ; then true ; else cp -p $(top_srcdir)/lib/fontlist.c fontlist.c ; fi