Skip to content

Commit

Permalink
Use SOURCE_INCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
kportertx committed Oct 12, 2023
1 parent b1a0747 commit cdbb052
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ ifdef DEBUG
endif

# Include Paths
INC_PATH += $(COMMON)/$(TARGET_INCL)
INC_PATH += $(MOD_LUA)/$(TARGET_INCL)
INC_PATH += $(COMMON)/$(SOURCE_INCL)
INC_PATH += $(MOD_LUA)/$(SOURCE_INCL)
INC_PATH += $(LUAMOD)

###############################################################################
Expand Down Expand Up @@ -257,8 +257,8 @@ $(TARGET_LIB)/libaerospike.$(DYNAMIC_SUFFIX): $(OBJECTS) $(EXP_DEPS) | modules
$(TARGET_LIB)/libaerospike.a: $(OBJECTS) $(EXP_DEPS) | modules
$(archive) $(DEPS) $(LUA_OBJECTS)

$(TARGET_INCL)/aerospike: | $(TARGET_INCL)
mkdir $@
$(TARGET_INCL)/aerospike:
mkdir -p $@

$(TARGET_INCL)/aerospike/%.h: $(SOURCE_INCL)/aerospike/%.h | $(TARGET_INCL)/aerospike
cp -p $^ $@
Expand Down

0 comments on commit cdbb052

Please sign in to comment.