blob: 369b5bc1017c9dc2ae7b860eb79da6ef81277b19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $Header: Makefile,v 1.1 88/01/15 12:16:52 simpson Rel $
# $Log: Makefile,v $
#Revision 1.1 88/01/15 12:16:52 simpson
#initial release
#
#Revision 0.1 87/12/11 17:20:06 simpson
#beta test
#
INCLUDE=/usr/include/local
LIB=/usr/local/lib
all: libprofile.a
# This system include file is needed right away
configure:
install -c -m 644 profile.h $(INCLUDE)
libprofile.a: boolean.o free.o has.o read.o space.o write.o
ar cr libprofile.a boolean.o free.o has.o read.o space.o write.o
ranlib libprofile.a
install:
install -c -m 644 profile.h $(INCLUDE)
install -m 644 libprofile.a $(LIB)
clean:
-rm *.o libprofile.a
boolean.o free.o has.o read.o space.o write.o: profile.h
|