diff options
-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 |