mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-27 10:38:48 +03:00
17d3ef6bdc
built by configure and the doxygen documentation to be removed by maintainer-clean.
48 lines
950 B
Makefile
48 lines
950 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = .
|
|
VDEPTH = ./$(VPATH)
|
|
|
|
SUBDIRS = \
|
|
lib \
|
|
cmd \
|
|
dist \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
all.dsp \
|
|
synergy.dsw \
|
|
doc/doxygen.cfg \
|
|
examples/synergy.conf \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in \
|
|
aclocal.m4 \
|
|
config.h \
|
|
config.h.in \
|
|
config.log \
|
|
config.status \
|
|
configure \
|
|
stamp-h.in \
|
|
stamp-h1 \
|
|
doc/doxygen.cfg \
|
|
doc/doxygen/html/* \
|
|
$(NULL)
|
|
|
|
# build doxygen documentation
|
|
doxygen:
|
|
doxygen doc/doxygen.cfg
|
|
|
|
# build RPMs
|
|
RPMTOPDIR=/var/tmp/@PACKAGE@-@VERSION@
|
|
dist-rpm: dist
|
|
rm -rf $(RPMTOPDIR)
|
|
mkdir $(RPMTOPDIR)
|
|
(cd $(RPMTOPDIR); mkdir BUILD SOURCES SPECS SRPMS RPMS)
|
|
cp @PACKAGE@-@VERSION@.tar.gz $(RPMTOPDIR)/SOURCES
|
|
rpm --define '_topdir $(RPMTOPDIR)' -ba dist/rpm/synergy.spec && \
|
|
mv -f $(RPMTOPDIR)/SRPMS/*.rpm . && \
|
|
mv -f $(RPMTOPDIR)/RPMS/*/*.rpm . && \
|
|
rm -rf $(RPMTOPDIR)
|