Skip to content

Commit

Permalink
Update makefiles after MachineArithmetic moved packages to src dire…
Browse files Browse the repository at this point in the history
…ctory

MachineArithmetic commit 2eab9386 "Move smalltalk sources to `src` directory"
moved all packages into `src` subdirectory. This commit updates makefiles
to reflect this change.
  • Loading branch information
janvrany committed Dec 4, 2023
1 parent 0292165 commit 90a20f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pharo/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ build: prereq $(PROJECT).image

$(PROJECT).image: ../src/*/*.st
$(call pharo-copy-image, $(PHARO_IMAGE), $@)
$(call pharo-load-local, $@, MachineArithmetic,$(MACHINEARITHMETIC_DIR))
$(call pharo-load-local, $@, MachineArithmetic,$(MACHINEARITHMETIC_DIR)/src)
$(call pharo-load-local, $@, ArchC, ../src)

run: build
Expand Down
4 changes: 2 additions & 2 deletions stx/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ build: prereq
run: build
ARCHC_PDL_DIR=$(ARCHC_PDL_DIR)/ $(STX) \
--quick \
--package-path $(MACHINEARITHMETIC_DIR) \
--package-path $(MACHINEARITHMETIC_DIR)/src \
--package-path ../src \
--load BaselineOf$(PROJECT) \

test: build
ARCHC_PDL_DIR=$(ARCHC_PDL_DIR)/ $(STX) \
--package-path $(MACHINEARITHMETIC_DIR) \
--package-path $(MACHINEARITHMETIC_DIR)/src \
--package-path ../src \
--load BaselineOf$(PROJECT) \
--run Builder::ReportRunner -r Builder::TestReport --fail-on-failure \
Expand Down

0 comments on commit 90a20f8

Please sign in to comment.