diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-05-31 00:26:40 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-06-30 17:10:00 +0200 |
commit | 74fb5209f06edcf0b52bdf44ba805cb5f6cd41c8 (patch) | |
tree | 3481be39655a9f72626722dab60ba6be08285116 /utils/Makefile | |
parent | f57ed76faed9e9e922ba93dd3bf8740974eb718a (diff) | |
download | hurd-74fb5209f06edcf0b52bdf44ba805cb5f6cd41c8.tar.gz hurd-74fb5209f06edcf0b52bdf44ba805cb5f6cd41c8.tar.bz2 hurd-74fb5209f06edcf0b52bdf44ba805cb5f6cd41c8.zip |
utils: split-off the message id parsing
* utils/rpctrace.c: Move all the code handling the message id files...
* utils/msgids.c: ... to a new file.
* utils/msgids.h: And add the relevand declarations.
* utils/Makefile (SRCS): Add the new file.
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/Makefile b/utils/Makefile index 1117be16..9ad2a40e 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -31,7 +31,7 @@ SRCS = shd.c ps.c settrans.c syncfs.c showtrans.c addauth.c rmauth.c \ parse.c frobauth.c frobauth-mod.c setauth.c pids.c nonsugid.c \ unsu.c ftpcp.c ftpdir.c storeread.c storecat.c msgport.c \ rpctrace.c mount.c gcore.c fakeauth.c fakeroot.sh remap.sh \ - nullauth.c match-options.c + nullauth.c match-options.c msgids.c OBJS = $(filter-out %.sh,$(SRCS:.c=.o)) HURDLIBS = ps ihash store fshelp ports ftpconn shouldbeinlibc @@ -67,8 +67,10 @@ ps w ids settrans syncfs showtrans fsysopts storeinfo login vmstat portinfo \ $(filter-out $(special-targets), $(targets)): %: %.o -rpctrace: ../libports/libports.a ../libihash/libihash.a -rpctrace-CPPFLAGS = -DDATADIR=\"${datadir}\" +rpctrace: ../libports/libports.a +rpctrace: msgids.o \ + ../libihash/libihash.a +msgids-CPPFLAGS = -DDATADIR=\"${datadir}\" fakeauth: authServer.o auth_requestUser.o interruptServer.o \ ../libports/libports.a ../libihash/libihash.a \ |