Skip to content

Commit

Permalink
Add data/ to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaulrich committed Feb 23, 2024
1 parent 1caba4c commit e7f1f3a
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 @@ -20,10 +20,11 @@ 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_DATA_FILES := $(wildcard ${PKG_PATH}/data/*)
PKG_SRC_FILES := $(wildcard ${PKG_PATH}/src/*)
PKG_HEADER_FILES := $(wildcard ${PKG_PATH}/inst/include/*h)
PKG_ALL_FILES := ${PKG_PATH}/DESCRIPTION ${PKG_PATH}/NAMESPACE ${PKG_HEADER_FILES} \
$(PKG_R_FILES) $(PKG_RD_FILES) $(PKG_SRC_FILES) ${PKG_PATH}/.Rbuildignore
$(PKG_R_FILES) $(PKG_RD_FILES) $(PKG_DATA_FILES) $(PKG_SRC_FILES) ${PKG_PATH}/.Rbuildignore

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

0 comments on commit e7f1f3a

Please sign in to comment.