227f831639
Since we always want debug.mk whenever we include cc.mk, move the include out of the Makefiles and into cc.mk itself. This also fixes an include order bug in rc/Makefile where debug.mk is included before cc.mk and breaks the default CFLAGS setup in cc.mk. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13 lines
197 B
Makefile
13 lines
197 B
Makefile
LIB= einfo
|
|
SHLIB_MAJOR= 1
|
|
SRCS= libeinfo.c
|
|
INCS= einfo.h
|
|
VERSION_MAP= einfo.map
|
|
|
|
CPPFLAGS+= -I../includes
|
|
|
|
MK= ../../mk
|
|
include ${MK}/lib.mk
|
|
include ${MK}/cc.mk
|
|
include ${MK}/termcap.mk
|