aboutsummaryrefslogtreecommitdiffstats
path: root/src/so.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/so.mk')
-rw-r--r--src/so.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/so.mk b/src/so.mk
index 0ba406c85..446bf1100 100644
--- a/src/so.mk
+++ b/src/so.mk
@@ -3,11 +3,11 @@
3# Note: $(ROOT)/config.mk must be included before this file. 3# Note: $(ROOT)/config.mk must be included before this file.
4# 4#
5# The includer should probably define SO and TARGET and may also want to define 5# The includer should probably define SO and TARGET and may also want to define
6# MOD_HDRS, MOD_OBJS, TOCLEAN and TODISTCLEAN. 6# EXTRA_HDRS, EXTRA_OBJS, TOCLEAN and TODISTCLEAN.
7 7
8HDRS := $(sort $(wildcard *.h)) $(MOD_HDRS) 8HDRS := $(sort $(wildcard *.h)) $(EXTRA_HDRS)
9SRCS := $(sort $(wildcard *.c)) 9SRCS := $(sort $(wildcard *.c))
10OBJS := $(SRCS:.c=.o) $(MOD_OBJS) 10OBJS := $(SRCS:.c=.o) $(EXTRA_OBJS)
11 11
12SO_CFLAGS = \ 12SO_CFLAGS = \
13 -ggdb -O2 -DVERSION='"$(VERSION)"' \ 13 -ggdb -O2 -DVERSION='"$(VERSION)"' \