Skip to content

Commit

Permalink
Include headers in build target
Browse files Browse the repository at this point in the history
This wasn't rebuilding when xts.h was changed.
  • Loading branch information
joshuaulrich committed Mar 6, 2023
1 parent 7452beb commit 31005d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ PKG_INST_FILE = $(R_LIB)/${PKG_NAME}/DESCRIPTION
PKG_R_FILES := $(wildcard ${PKG_PATH}/R/*.R)
PKG_RD_FILES := $(wildcard ${PKG_PATH}/man/*.Rd)
PKG_SRC_FILES := $(wildcard ${PKG_PATH}/src/*)
PKG_ALL_FILES := ${PKG_PATH}/DESCRIPTION ${PKG_PATH}/NAMESPACE $(PKG_R_FILES) $(PKG_RD_FILES) $(PKG_SRC_FILES)
PKG_ALL_FILES := ${PKG_PATH}/DESCRIPTION ${PKG_PATH}/NAMESPACE $(PKG_R_FILES) $(PKG_RD_FILES) $(PKG_SRC_FILES) \
${PKG_PATH}/inst/include/xts.h ${PKG_PATH}/inst/include/xtsAPI.h

HTML_FILES := $(patsubst %.Rmd, %.html, $(wildcard *.Rmd)) \
$(patsubst %.md, %.html, $(wildcard *.md))
Expand Down

0 comments on commit 31005d8

Please sign in to comment.