Blame src/libpfm4/Makefile

Packit 577717
#
Packit 577717
# Copyright (c) 2002-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
# Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
#
Packit 577717
# Permission is hereby granted, free of charge, to any person obtaining a copy 
Packit 577717
# of this software and associated documentation files (the "Software"), to deal 
Packit 577717
# in the Software without restriction, including without limitation the rights 
Packit 577717
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
Packit 577717
# of the Software, and to permit persons to whom the Software is furnished to do so, 
Packit 577717
# subject to the following conditions:
Packit 577717
# 
Packit 577717
# The above copyright notice and this permission notice shall be included in all 
Packit 577717
# copies or substantial portions of the Software.  
Packit 577717
# 
Packit 577717
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
Packit 577717
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
Packit 577717
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
Packit 577717
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
Packit 577717
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
Packit 577717
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
#
Packit 577717
Packit 577717
#
Packit 577717
# Look in config.mk for options
Packit 577717
#
Packit 577717
TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
Packit 577717
Packit 577717
include config.mk
Packit 577717
Packit 577717
EXAMPLE_DIRS=examples
Packit 577717
DIRS=lib tests $(EXAMPLE_DIRS) include docs
Packit 577717
Packit 577717
ifeq ($(SYS),Linux)
Packit 577717
EXAMPLE_DIRS +=perf_examples
Packit 577717
endif
Packit 577717
Packit 577717
ifneq ($(CONFIG_PFMLIB_NOPYTHON),y)
Packit 577717
DIRS += python
Packit 577717
endif
Packit 577717
Packit 577717
TAR=tar --exclude=.git --exclude=.gitignore
Packit 577717
CURDIR=$(shell basename "$$PWD")
Packit 577717
PKG=libpfm-4.$(REVISION).$(AGE)
Packit 577717
TARBALL=$(PKG).tar.gz
Packit 577717
Packit 577717
all: 
Packit 577717
	@echo Compiling for \'$(ARCH)\' target
Packit 577717
	@echo Compiling for \'$(SYS)\' system
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
lib:
Packit 577717
	$(MAKE) -C lib
Packit 577717
Packit 577717
clean: 
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
distclean:  clean
Packit 577717
	@(cd debian; $(RM) -f *.log *.debhelper *.substvars; $(RM) -rf libpfm4-dev libpfm4 python-libpfm4 tmp files)
Packit 577717
	$(RM) -f tags
Packit 577717
Packit 577717
depend: 
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
tar: clean
Packit 577717
	ln -s $$PWD ../$(PKG) && cd .. &&  $(TAR) -zcf $(TARBALL) $(PKG)/. && rm $(PKG)
Packit 577717
	@echo generated ../$(TARBALL)
Packit 577717
Packit 577717
install: 
Packit 577717
	@echo installing in $(DESTDIR)
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
install_examples:
Packit 577717
	@set -e ; for d in $(EXAMPLE_DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
tags:
Packit 577717
	@echo creating tags
Packit 577717
	$(MAKE) -C lib $@
Packit 577717
Packit 577717
static:
Packit 577717
	make all CONFIG_PFMLIB_SHARED=n
Packit 577717
Packit 577717
.PHONY: all clean distclean depend tar install install_examples lib static
Packit 577717
Packit 577717
# DO NOT DELETE