diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 01:03:06 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 01:03:06 +0000 |
commit | 29a6fd55080da3415708d19c9891fcedf990fb3f (patch) | |
tree | f37c755b9413f6eccdfc496a9695ed94f1e7ba0b | |
parent | fc86feac0b5c13a1030c7245d729b28cd1812be7 (diff) |
(OBJS): New var.
(timertest, fstests, opendisk, fdtests): List object files.
-rw-r--r-- | fstests/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fstests/Makefile b/fstests/Makefile index 15aac39f..4daa1866 100644 --- a/fstests/Makefile +++ b/fstests/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. # This file is part of the GNU Hurd. # # The GNU Hurd is free software; you can redistribute it and/or modify @@ -19,7 +19,12 @@ dir := fstests makemode := utilities SRCS = fstests.c fdtests.c timertest.c opendisk.c +OBJS = fstests.o fdtests.o timertest.o opendisk.o targets = timertest fstests opendisk # fdtests include ../Makeconf +timertest: timertest.o +fstests: fstests.o +opendisk: opendisk.o +fdtests: fdtests.o |