Blame src/libpfm-3.y/examples_v3.x/ia64/Makefile

Packit 577717
#
Packit 577717
# Copyright (c) 2002-2005 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
# This file is part of libpfm, a performance monitoring support library for
Packit 577717
# applications on Linux/ia64.
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
LDFLAGS+=-static 
Packit 577717
Packit 577717
LIBS += -lm
Packit 577717
Packit 577717
SRCS +=ita_rr.c ita_irr.c ita_opcode.c ita_btb.c ita_dear.c
Packit 577717
SRCS +=ita2_opcode.c ita2_rr.c ita2_irr.c ita2_dear.c ita2_btb.c
Packit 577717
SRCS +=mont_opcode.c mont_rr.c mont_irr.c mont_dear.c mont_etb.c
Packit 577717
Packit 577717
TARGETS = $(SRCS:.c=)
Packit 577717
Packit 577717
PFMLIB=$(PFMLIBDIR)/libpfm.a
Packit 577717
Packit 577717
all: $(TARGETS)
Packit 577717
Packit 577717
$(TARGETS):  %:%.o $(PFMLIB)
Packit 577717
	$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LIBS) 
Packit 577717
Packit 577717
clean:
Packit 577717
	$(RM) -f *.o $(TARGETS)
Packit 577717
Packit 577717
distclean: clean
Packit 577717
Packit 577717
depend:
Packit 577717
	$(MKDEP) $(CFLAGS) $(SRCS)
Packit 577717
Packit 577717
install_examples: $(TARGETS)
Packit 577717
Packit 577717
install_examples:
Packit 577717
	@echo installing: $(TARGETS)
Packit 577717
	-mkdir -p $(DESTDIR)$(EXAMPLESDIR)/ia64
Packit 577717
	$(INSTALL) -m 755 $(TARGETS) $(DESTDIR)$(EXAMPLESDIR)/ia64
Packit 577717
Packit 577717
#
Packit 577717
# examples are installed as part of the RPM install, typically in /usr/share/doc/libpfm-X.Y/
Packit 577717
#