diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-02-22 04:55:41 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-02-22 04:55:41 +0000 |
commit | f78734a0cc43e4b6db337e533fc36554e6c2a785 (patch) | |
tree | 98e997fc7dc2730b647ac080e359a5a23dcf4af8 /modules/Simple.Rules | |
parent | 76c1d898c3f7999c67d06d913d40b4d5adb42c02 (diff) | |
download | pam-f78734a0cc43e4b6db337e533fc36554e6c2a785.tar.gz pam-f78734a0cc43e4b6db337e533fc36554e6c2a785.tar.bz2 pam-f78734a0cc43e4b6db337e533fc36554e6c2a785.zip |
Relevant BUGIDs: 132880
Purpose of commit: remainder of bugfix
Commit summary:
---------------
Somehow, this got left out of an earlier commit. This checkin completes
the support for fixing bug 132880.
Diffstat (limited to 'modules/Simple.Rules')
-rw-r--r-- | modules/Simple.Rules | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/Simple.Rules b/modules/Simple.Rules index be56e1d3..04fafc12 100644 --- a/modules/Simple.Rules +++ b/modules/Simple.Rules @@ -10,10 +10,12 @@ # $(MODULE_SIMPLE_REMOVE) # $(MODULE_SIMPLE_INSTALL) # $(MODULE_SIMPLE_EXTRALIBS) - other things to link with the module +# $(MODULE_SIMPLE_EXTRAFILES) - other files to build (no .c suffix) # -LIBSRC = $(TITLE).c -LIBOBJ = $(TITLE).o +LIBFILES = $(TITLE) $(MODULE_SIMPLE_EXTRAFILES) +LIBSRC = $(addsuffix .c,$(LIBFILES)) +LIBOBJ = $(addsuffix .o,$(LIBFILES)) LIBOBJD = $(addprefix dynamic/,$(LIBOBJ)) LIBOBJS = $(addprefix static/,$(LIBOBJ)) |