Allow compilation of files from languages other than C to .o
authoraland <aland>
Mon, 29 Jul 2002 20:11:21 +0000 (20:11 +0000)
committeraland <aland>
Mon, 29 Jul 2002 20:11:21 +0000 (20:11 +0000)
Patch from Andrey Kotrekhov <kota@at.com.ua>

src/modules/rules.mak

index d8981b3..672128c 100644 (file)
@@ -37,8 +37,8 @@ all: static dynamic
 # along with a number of other useful definitions.
 #
 #######################################################################
-STATIC_OBJS    = $(SRCS:.c=.o)
-DYNAMIC_OBJS   = $(SRCS:.c=.lo)
+STATIC_OBJS    += $(SRCS:.c=.o)
+DYNAMIC_OBJS   += $(SRCS:.c=.lo)
 CFLAGS         += -I$(RLM_DIR)../../include
 
 #######################################################################