Blame src/libpfm-3.y/examples_v3.x/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
TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)/..
Packit 577717
Packit 577717
include $(TOPDIR)/config.mk
Packit 577717
include $(TOPDIR)/rules.mk
Packit 577717
Packit 577717
DIRS=
Packit 577717
Packit 577717
ifeq ($(ARCH),ia64)
Packit 577717
DIRS +=ia64
Packit 577717
endif
Packit 577717
Packit 577717
ifeq ($(ARCH),ia32)
Packit 577717
DIRS +=x86
Packit 577717
endif
Packit 577717
Packit 577717
ifeq ($(ARCH),x86_64)
Packit 577717
DIRS +=x86
Packit 577717
endif
Packit 577717
Packit 577717
ifeq ($(CONFIG_PFMLIB_ARCH_CRAYXT),y)
Packit 577717
CFLAGS += -DCONFIG_PFMLIB_ARCH_CRAYXT
Packit 577717
endif
Packit 577717
Packit 577717
CFLAGS+= -I. -D_GNU_SOURCE
Packit 577717
LIBS += -lm
Packit 577717
Packit 577717
ifeq ($(SYS),Linux)
Packit 577717
CFLAGS+= -pthread
Packit 577717
LIBS += -lrt
Packit 577717
endif
Packit 577717
Packit 577717
TARGET_GEN=showevtinfo check_events
Packit 577717
Packit 577717
ifeq ($(SYS),Linux)
Packit 577717
TARGET_LINUX +=self task task_attach task_attach_timeout syst \
Packit 577717
	  notify_self notify_self2 notify_self3 \
Packit 577717
	  multiplex multiplex2 set_notify whichpmu \
Packit 577717
	  showreginfo task_smpl task_smpl_user \
Packit 577717
	  pfmsetup self_smpl_multi self_pipe \
Packit 577717
	  notify_self_fork
Packit 577717
Packit 577717
XTRA += rtop
Packit 577717
endif
Packit 577717
Packit 577717
all: $(TARGET_GEN) $(TARGET_LINUX) $(XTRA)
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
# Many systems don't have ncurses installed
Packit 577717
rtop: rtop.o detect_pmcs.o $(PFMLIB)
Packit 577717
	-$(CC) $(CFLAGS) $(LDFLAGS) -D_GNU_SOURCE -o $@ $^ $(LIBS)  -lpthread -lncurses
Packit 577717
Packit 577717
$(TARGET_LINUX):  %:%.o detect_pmcs.o $(PFMLIB)
Packit 577717
	$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS) 
Packit 577717
Packit 577717
$(TARGET_GEN):  %:%.o $(PFMLIB)
Packit 577717
	$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS) 
Packit 577717
clean:
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
	$(RM) -f *.o $(TARGET_LINUX) $(TARGET_GEN) $(XTRA) *~
Packit 577717
Packit 577717
distclean: clean
Packit 577717
Packit 577717
install_examples: $(TARGET_LINUX) $(TARGET_GEN)
Packit 577717
Packit 577717
install_examples:
Packit 577717
	@echo installing: $(TARGET_LINUX) $(TARGET_GEN)
Packit 577717
	-mkdir -p $(DESTDIR)$(EXAMPLESDIR)
Packit 577717
	$(INSTALL) -m 755 $(TARGET_LINUX) $(TARGET_GEN) $(DESTDIR)$(EXAMPLESDIR)
Packit 577717
	@set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
Packit 577717
#
Packit 577717
# examples are installed as part of the RPM install, typically in /usr/share/doc/libpfm-X.Y/
Packit 577717
#