Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
CuppoJava committed Nov 30, 2022
2 parents 289f72f + 4117bf3 commit 39c087a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/conantest02/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Stanza version to download in the form 0_12_34 matching what's in the zip filename
STANZA_VERSION := 0_17_40
STANZA_VERSION := 0_17_44

# detect platform
SYS := $(shell gcc -dumpmachine)
Expand Down Expand Up @@ -36,6 +36,10 @@ VERBOSE := -verbose
all: asmjit-app


# create build dir
$(BUILD_DIR):
mkdir build

# download and unzip stanza
$(STANZA_DIR):
@echo "Downloading $(STANZA_ZIP)"
Expand All @@ -52,8 +56,8 @@ $(STANZA_DIR):


# link final executable
$(BUILD_DIR)/asmjit-app: stanza.proj ###_when_using_release_stanza >>> ### | .stanza
###_when_using_release_stanza >>> ### export STANZA_CONFIG="$$PWD"
$(BUILD_DIR)/asmjit-app: stanza.proj | .stanza $(STANZA_DIR) $(BUILD_DIR)
export STANZA_CONFIG="$$PWD"
$(STANZA) compile asmjit-app -o $(BUILD_DIR)/asmjit-app $(VERBOSE)

# convenience target
Expand Down

0 comments on commit 39c087a

Please sign in to comment.