[base] Add missing dependencies to Makefile.
* src/base/rules.mk (BASE_SRC): Add `basepic.c' and `ftpic.c'. (BASE_H): Add `basepic.h'.
This commit is contained in:
parent
8a8f3758f1
commit
c4e968edcb
|
@ -1,3 +1,10 @@
|
|||
2013-12-21 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[base] Add missing dependencies to Makefile.
|
||||
|
||||
* src/base/rules.mk (BASE_SRC): Add `basepic.c' and `ftpic.c'.
|
||||
(BASE_H): Add `basepic.h'.
|
||||
|
||||
2013-12-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[autofit] Fix PIC compilation.
|
||||
|
|
|
@ -33,12 +33,14 @@ BASE_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(SRC_DIR)/base)
|
|||
# All files listed here should be included in `ftbase.c' (for a `single'
|
||||
# build).
|
||||
#
|
||||
BASE_SRC := $(BASE_DIR)/ftadvanc.c \
|
||||
BASE_SRC := $(BASE_DIR)/basepic.c \
|
||||
$(BASE_DIR)/ftadvanc.c \
|
||||
$(BASE_DIR)/ftcalc.c \
|
||||
$(BASE_DIR)/ftdbgmem.c \
|
||||
$(BASE_DIR)/ftgloadr.c \
|
||||
$(BASE_DIR)/ftobjs.c \
|
||||
$(BASE_DIR)/ftoutln.c \
|
||||
$(BASE_DIR)/ftpic.c \
|
||||
$(BASE_DIR)/ftrfork.c \
|
||||
$(BASE_DIR)/ftsnames.c \
|
||||
$(BASE_DIR)/ftstream.c \
|
||||
|
@ -51,8 +53,9 @@ ifneq ($(ftmac_c),)
|
|||
endif
|
||||
|
||||
# for simplicity, we also handle `md5.c' (which gets included by `ftobjs.h')
|
||||
BASE_H := $(BASE_DIR)/ftbase.h \
|
||||
$(BASE_DIR)/md5.c \
|
||||
BASE_H := $(BASE_DIR)/basepic.h \
|
||||
$(BASE_DIR)/ftbase.h \
|
||||
$(BASE_DIR)/md5.c \
|
||||
$(BASE_DIR)/md5.h
|
||||
|
||||
# Base layer `extensions' sources
|
||||
|
|
Loading…
Reference in New Issue