diff options
author | Zheng Da <zhengda1936@gmail.com> | 2010-05-31 17:21:47 +0200 |
---|---|---|
committer | Zheng Da <zhengda1936@gmail.com> | 2010-05-31 17:21:47 +0200 |
commit | 2fe1437bd35016309e9ac4cfe57fb3daca3ba0a0 (patch) | |
tree | d3d82562d28483574caab94c6a35ae3ad3e92fc2 /libmachdev/Makefile | |
parent | 8be479740f0d7cdf8e78bf5c62ba934afdd9dca1 (diff) |
make glue code of networking more independant.
This change is required for block device drivers. When block device
drivers are linked to the glue code, the linker should be able to
perform garbage collection and exclude the code of networking from
the driver programs.
Diffstat (limited to 'libmachdev/Makefile')
-rw-r--r-- | libmachdev/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmachdev/Makefile b/libmachdev/Makefile index daf13a82..f64e281a 100644 --- a/libmachdev/Makefile +++ b/libmachdev/Makefile @@ -22,7 +22,8 @@ libname = libmachdev SRCS = deviceUser.c machUser.c net.c ds_routines.c queue.c trivfs_server.c \ device_replyUser.c deviceServer.c notifyServer.c LCLHDRS = dev_hdr.h device_emul.h ds_routines.h vm_param.h \ - util.h queue.h io_req.h if_ether.h + util.h queue.h io_req.h if_ether.h machdev.h +installhdrs = machdev.h device_emul.h HURDLIBS = ports threads trivfs OBJS = $(SRCS:.c=.o) $(MIGSTUBS) |