Skip to content

Commit af6e780

Browse files
committed
restoring build of build_h.jl
1 parent 718f520 commit af6e780

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ julia-debug julia-release:
2121
@$(MAKE) -sC ui $@
2222
@ln -sf $(BUILD)/bin/$@-$(DEFAULT_REPL) julia
2323

24-
base/build_h.jl: Make.inc
25-
@echo "_jl_libblas_name = \"$(LIBBLASNAME)\"" > $@
26-
@echo "_jl_liblapack_name = \"$(LIBLAPACKNAME)\"" >> $@
27-
2824
$(BUILD)/lib/julia/helpdb.jl: doc/helpdb.jl | $(BUILD)/lib/julia
2925
@cp $< $@
3026

base/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include ../Make.inc
33

44
PCRE_CONST = 0x[0-9a-fA-F]+|[-+]?\s*[0-9]+
55

6-
all: pcre_h.jl errno_h.jl os_detect.jl
6+
all: pcre_h.jl errno_h.jl os_detect.jl build_h.jl
77

88
pcre_h.jl:
99
$(QUIET_PERL) ${CC} -E -dM $(shell $(PCRE_CONFIG) --prefix)/include/pcre.h | perl -nle '/^\s*#define\s+PCRE_(\w*)\s*\(?($(PCRE_CONST))\)?\s*$$/ and print "const $$1 = int32($$2)"' | sort > $@
@@ -14,8 +14,13 @@ errno_h.jl:
1414
os_detect.jl: ../src/os_detect.h
1515
$(QUIET_PERL) ${CC} -E -P -DJULIA ../src/os_detect.h | perl -p -e 's/\\n/\n/g' > $@
1616

17+
build_h.jl: ../Make.inc
18+
@echo "_jl_libblas_name = \"$(LIBBLASNAME)\"" > $@
19+
@echo "_jl_liblapack_name = \"$(LIBLAPACKNAME)\"" >> $@
20+
1721
clean:
1822
rm -f *# *~
1923
rm -f pcre_h.jl
2024
rm -f errno_h.jl
2125
rm -f os_detect.jl
26+
rm -f build_h.jl

0 commit comments

Comments
 (0)