diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-30 13:58:43 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-30 13:58:43 +0000 |
commit | b35ef8ef7902313081fa263694ff5ea32dce170f (patch) | |
tree | b0d7e842aa3e04bafe22a8b63c92b66ef45a5084 | |
parent | fee1bfd96cb37d620e4771d432a899aa4cf25e57 (diff) |
(all): Delete target.
(include ../Makeconf): *Before* all dependences.
($(targets)): Each program depends on its associated .o.
-rw-r--r-- | trans/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trans/Makefile b/trans/Makefile index b5424b6f..3509db5b 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -22,7 +22,7 @@ targets = symlink ifsock magic null fifo new-fifo fwd devport SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c devport.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o -all: $(targets) +include ../Makeconf symlink magic: fsysServer.o ifsock: ifsockServer.o @@ -32,4 +32,4 @@ null ifsock fifo new-fifo devport: ../libtrivfs/libtrivfs.a ../libports/libports $(targets): ../libshouldbeinlibc/libshouldbeinlibc.a fwd null ifsock fifo new-fifo devport: ../libthreads/libthreads.a -include ../Makeconf +$(targets): %: %.o |