diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-08-16 16:06:23 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-08-16 16:06:23 +0000 |
commit | 5463d333c58428626ac69de9bd98ab9413911ae7 (patch) | |
tree | 565273844e019526c1db49c2f57d9aa3ab6ad8a7 /trans | |
parent | a82f37132b7a3310320ee83983831842c3f8f8f2 (diff) |
entered into RCS
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/trans/Makefile b/trans/Makefile index 129b0f8b..e42dcd53 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -16,10 +16,17 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := trans -makemode := misc +makemode := servers SRCS = ifsock.c symlink.c +targets = symlink ifsock include ../Makeconf +symlink: symlink.o fsysServer.o + $(CC) $(CFLAGS) -o symlink $^ +symlink.o: fsys_S.h +ifsock: ifsock.o $(libtrivfs) $(libports) ifsockServer.o + $(CC) $(CFLAGS) -o ifsock $^ +ifsock.o: ifsock_S.h ../hurd/trivfs.h ../hurd/ports.h |