mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-17 21:30:02 +01:00
48 lines
807 B
Makefile
48 lines
807 B
Makefile
# Process with automake to produce Makefile.in
|
|
|
|
SUBDIRS = src man
|
|
|
|
#
|
|
# Add any non autoconf'd files here, extra readmes and other misc
|
|
# info to be copied into the dist
|
|
#
|
|
EXTRA_DIST = \
|
|
autogen.sh\
|
|
depcomp \
|
|
cpuinfo.sh \
|
|
autogen.sh
|
|
|
|
DISTCLEANFILES = \
|
|
confdefs.h \
|
|
config.cache \
|
|
config.status \
|
|
config.log
|
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
compile \
|
|
depcomp \
|
|
install-sh \
|
|
missing \
|
|
mkinstalldirs \
|
|
Makefile.in \
|
|
aclocal.m4 \
|
|
config.guess \
|
|
config.h.in \
|
|
config.sub \
|
|
configure \
|
|
ltmain.sh \
|
|
stamp-h.in
|
|
|
|
## make rpms
|
|
rpm: Makefile
|
|
$(MAKE) dist
|
|
rpmbuild -ta --clean $(PACKAGE)-$(VERSION).tar.gz
|
|
|
|
## make debs
|
|
deb: Makefile dist
|
|
-chmod -R +w $(PACKAGE)-$(VERSION)
|
|
rm -rf $(PACKAGE)-$(VERSION)
|
|
tar xzf $(PACKAGE)-$(VERSION).tar.gz
|
|
cd $(PACKAGE)-$(VERSION); dpkg-buildpackage -rfakeroot
|