Skip to content

Commit

Permalink
Fix copying the headers to the target directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
kportertx committed Oct 12, 2023
1 parent 57fdeaa commit 844e383
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ MOD_LUA += mod_lua_stream.o
MOD_LUA += mod_lua_system.o
MOD_LUA += mod_lua_val.o

###############################################################################
## HEADERS ##
###############################################################################

MOD_LUA_HS = $(wildcard $(SOURCE_INCL)/aerospike/*.h)

###############################################################################
## MAIN TARGETS ##
###############################################################################
Expand All @@ -108,7 +114,7 @@ all: build prepare
build: modules-build libmod_lua

.PHONY: prepare
prepare: modules-prepare $(TARGET_INCL)/aerospike/*.h
prepare: modules-prepare $(subst $(SOURCE_INCL),$(TARGET_INCL),$(MOD_LUA_HS))

.PHONY: clean
clean: modules-clean
Expand Down

0 comments on commit 844e383

Please sign in to comment.