| 1 |
cbauer |
1.1 |
## Process this file with automake to produce Makefile.in
|
| 2 |
cbauer |
1.4 |
SUBDIRS = ginac check ginsh tools doc
|
| 3 |
cbauer |
1.2 |
|
| 4 |
|
|
# Requires automake 1.4
|
| 5 |
|
|
AUTOMAKE_OPTIONS = 1.4
|
| 6 |
cbauer |
1.3 |
|
| 7 |
|
|
# GiNaC runtime configuration script
|
| 8 |
|
|
bin_SCRIPTS = ginac-config
|
| 9 |
|
|
|
| 10 |
|
|
# All the rest of the distributed files
|
| 11 |
|
|
EXTRA_DIST = autogen.sh ginac.m4
|
| 12 |
|
|
|
| 13 |
|
|
# M4 macro file for inclusion with autoconf
|
| 14 |
|
|
m4datadir = $(datadir)/aclocal
|
| 15 |
|
|
m4data_DATA = ginac.m4
|
| 16 |
|
|
|
| 17 |
|
|
# Rule to build tar-gzipped distribution package
|
| 18 |
|
|
$(PACKAGE)-$(VERSION).tar.gz: dist
|
| 19 |
|
|
|
| 20 |
|
|
# Rule to build RPM distribution package
|
| 21 |
|
|
rpm: $(PACKAGE)-$(VERSION).tar.gz
|
| 22 |
|
|
cp $(PACKAGE)-$(VERSRION).tar.gz /usr/src/redhat/SOURCES
|
| 23 |
|
|
rpm -ba GiNaC.spec
|