12345678910111213141516171819202122232425 |
- ## Process this file with automake to produce Makefile.in
- bin_PROGRAMS = graph
- graph_SOURCES = graph.c misc.c linemode.c reader.c plotter.c fontlist.c
- graph_LDADD = ../lib/libcommon.a ../libplot/libplot.la
- noinst_HEADERS = extern.h
- INCLUDES = -I$(srcdir)/../include
- CLEANFILES = fontlist.c
- # remove executables installed by previous versions of the package, and
- # remove obsolete library versions too
- OBSOLETEBINS = graph-tek graph-hpgl graph-fig graph-ps graph-X
- OBSOLETELIBS = libplottek.a libplothpgl.a libplotfig.a libplotps.a libplotX.a
- install-exec-hook:
- -for f in $(OBSOLETEBINS) ; do rm -f $(bindir)/$$f; done
- -for f in $(OBSOLETELIBS) ; do rm -f $(libdir)/$$f; done
- fontlist.c: $(top_srcdir)/lib/fontlist.c
- @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
|