Blame src/libpfm-3.y/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
DIRS=lib include docs
Packit 577717
Packit 577717
EXAMPLES_DIRS = examples_v2.x
Packit 577717
Packit 577717
ifneq ($(CONFIG_PFMLIB_OLD_PFMV2),y)
Packit 577717
EXAMPLES_DIRS += examples_v3.x
Packit 577717
endif
Packit 577717
Packit 577717
ifeq ($(ARCH),ia64)
Packit 577717
DIRS +=examples_ia64_v2.0
Packit 577717
endif
Packit 577717
Packit 577717
ifeq ($(SYS),Linux)
Packit 577717
DIRS +=libpfms
Packit 577717
endif
Packit 577717
Packit 577717
DIRS += $(EXAMPLES_DIRS)
Packit 577717
Packit 577717
all: 
Packit 577717
	@echo Compiling for \'$(ARCH)\' target
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
Packit 577717
depend: 
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
tar: clean
Packit 577717
	a=`basename $$PWD`; cd ..; tar zcf $$a.tar.gz $$a; echo generated ../$$a.tar.gz;
Packit 577717
Packit 577717
tarcvs: clean
Packit 577717
	a=`basename $$PWD`; cd ..; tar --exclude=CVS -zcf $$a.tar.gz $$a; echo generated ../$$a.tar.gz;
Packit 577717
install: 
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 $(EXAMPLES_DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
Packit 577717
.PHONY: tar tarcvs lib
Packit 577717
Packit 577717
# DO NOT DELETE