File: Makefile.am

package info (click to toggle)
ginac 1.0.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,544 kB
  • ctags: 3,232
  • sloc: cpp: 27,732; sh: 7,126; perl: 1,819; yacc: 763; lex: 345; makefile: 221; sed: 32
file content (22 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## Process this file with automake to produce Makefile.in

bin_PROGRAMS = ginsh
ginsh_SOURCES = ginsh_parser.yy ginsh_lexer.ll ginsh.h ginsh_extensions.h
ginsh_LDADD = ../ginac/libginac.la $(GINSH_LIBS)

INCLUDES = -I$(srcdir)/../ginac -I../ginac -DIN_GINAC
YFLAGS = -d

man_MANS = ginsh.1

CLEANFILES = ginsh_fcn_help.h ginsh_op_help.h
EXTRA_DIST = ginsh_parser.h ginsh_fcn_help.sed ginsh_op_help.sed

# files created by sed scripts
ginsh_fcn_help.h: ginsh.1 $(srcdir)/ginsh_fcn_help.sed
	sed -n -f $(srcdir)/ginsh_fcn_help.sed <$< >$@

ginsh_op_help.h: ginsh.1 $(srcdir)/ginsh_op_help.sed
	sed -n -f $(srcdir)/ginsh_op_help.sed <$< >$@

ginsh_parser.o: ginsh_fcn_help.h ginsh_op_help.h