22 lines
376 B
Makefile
22 lines
376 B
Makefile
#!smake
|
|
#
|
|
# Makefile to re-compile the binary format version of the default
|
|
# Performance Metrics Names Space (PMNS)
|
|
#
|
|
# $Id: Makefile.install,v 2.4 1997/05/02 01:58:41 kenmcd Exp $
|
|
|
|
TARGETS = root.bin
|
|
PMNS != echo root_*
|
|
STDPMID != echo stdpmid.*
|
|
|
|
default: root.bin stdpmid
|
|
|
|
root.bin: $(PMNS)
|
|
./Rebuild
|
|
|
|
stdpmid: $(STDPMID)
|
|
./Make.stdpmid
|
|
|
|
clobber:
|
|
rm -f root.bin stdpmid
|