]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: 132880
authorAndrew G. Morgan <morgan@kernel.org>
Thu, 22 Feb 2001 04:55:41 +0000 (04:55 +0000)
committerAndrew G. Morgan <morgan@kernel.org>
Thu, 22 Feb 2001 04:55:41 +0000 (04:55 +0000)
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.

modules/Simple.Rules

index be56e1d393e973aae8ac15eb9f329da83d360146..04fafc1280e41bbab3cbeb73ec5fd6d669d995dd 100644 (file)
 #   $(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))