diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-04-11 15:17:46 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-04-11 15:17:46 +0000 |
commit | 7012c87ba038218cf78b33c05958001d06b46dc4 (patch) | |
tree | 0566199ad9c8ceef6afff91c3fdfe0a7d6b0f775 | |
parent | 0ff42daf41983ecb2d3ac1fc2cf180f5300d4d0a (diff) |
Rewrote in accord with new scheme.
-rw-r--r-- | benchmarks/Makefile | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/benchmarks/Makefile b/benchmarks/Makefile index 9c105d7a..dc2a8774 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1994 Free Software Foundation +# Copyright (C) 1994, 1995 Free Software Foundation # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -16,19 +16,10 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := benchmarks +makemode := utility -include ../Makeconf -CCTARGET=i386-gnu - -DIST_FILES = forks.c - -all: forks +SRCS = forks.c +target = forks -install: $(hurdroot) forks - $(INSTALL_BIN) forks $(hurdroot)/bin/forks - -clean: - rm -f forks *.o +include ../Makeconf -relink: - rm -f forks |