Browse Source

Add USE_PERL fallback option for create script used with FUNCTION_PROFILE

tags/v0.3.21
Martin Kroeker GitHub 3 years ago
parent
commit
a3e02742f2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      interface/Makefile

+ 4
- 1
interface/Makefile View File

@@ -531,8 +531,11 @@ $(BLASOBJS) $(BLASOBJS_P) : functable.h
$(BLASOBJS) $(BLASOBJS_P) : override CFLAGS += -DPROFILE_FUNC_NAME=interface_$(*F)

functable.h : Makefile
ifndef USE_PERL
./create $(FUNCALLFILES) > functable.h

else
./create.pl $(FUNCALLFILES) > functable.h
endif
endif

clean ::


Loading…
Cancel
Save