mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-18 02:09:41 +00:00
07b8b22c9b
Remove autotools generated files from the repository, provide a 'bootstrap' script for regenerating them, and update the configure.ac and Makefile.am files.
18 lines
391 B
Makefile
18 lines
391 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
SUBDIRS = src
|
|
|
|
# Manpages
|
|
man_MANS = cxmon.1
|
|
|
|
EXTRA_DIST = cxmon.1 bootstrap
|
|
|
|
dist-hook: cxmon.spec
|
|
cp cxmon.spec $(distdir)
|
|
|
|
# Rule to build tar-gzipped distribution package
|
|
$(PACKAGE)-$(VERSION).tar.gz: dist
|
|
|
|
# Rule to build RPM distribution package
|
|
rpm: $(PACKAGE)-$(VERSION).tar.gz
|
|
rpm -ta --clean $(PACKAGE)-$(VERSION).tar.gz
|