Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't hard code the compiler executable's name into the Makefile
  • Loading branch information
niner committed Aug 5, 2016
1 parent 07ad97b commit e7b7332
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.in
@@ -1,8 +1,9 @@
.PHONY: clean test
CC = %CC%
all: %p5helper%
clean:
rm "%p5helper%"
%p5helper%: p5helper.c
cc -Wall p5helper.c %perlopts% -shared -o "%p5helper%" -fPIC -g
$(CC) -Wall p5helper.c %perlopts% -shared -o "%p5helper%" -fPIC -g
test: all
prove -e 'perl6 -Ilib' t

0 comments on commit e7b7332

Please sign in to comment.