Makefile.am 688 B

123456789101112131415161718192021222324
  1. ## Process this file with automake to produce Makefile.in
  2. bin_PROGRAMS = tek2plot
  3. tek2plot_SOURCES = tek2plot.c Tektable.c fontlist.c
  4. tek2plot_LDADD = ../lib/libcommon.a ../libplot/libplot.la
  5. noinst_HEADERS = Tekparse.h
  6. INCLUDES = -I$(srcdir)/../include
  7. CLEANFILES = fontlist.c
  8. SUBDIRS = teksamples
  9. # remove executables installed by previous versions of the package
  10. OBSOLETEBINS = tek2tek tek2hpgl tek2fig tek2ps tek2X
  11. install-exec-hook:
  12. -for f in $(OBSOLETEBINS) ; do rm -f $(bindir)/$$f; done
  13. fontlist.c: $(top_srcdir)/lib/fontlist.c
  14. @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