rename/move some files; fix some stuff regarding this

This commit is contained in:
Steffen Jaeckel 2017-08-25 12:59:22 +02:00
parent edb72ca04b
commit 7cc18ffd11
6 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ while (<IN>) {
# EXAM,file
chomp($_);
@m = split(",",$_);
open(SRC,"<$m[1]") or die "Error:$srcline:Can't open source file $m[1]";
open(SRC,"<../$m[1]") or die "Error:$srcline:Can't open source file $m[1]";
print "$srcline:Inserting $m[1]:";

View File

@ -15,7 +15,7 @@ endif
coverage: LIBNAME:=-Wl,--whole-archive $(LIBNAME) -Wl,--no-whole-archive
include makefile.include
include makefile_include.mk
%.o: %.c
ifneq ($V,1)

View File

@ -7,7 +7,7 @@ ifndef LIBNAME
LIBNAME=libtommath.la
endif
include makefile.include
include makefile_include.mk
LT ?= libtool
LTCOMPILE = $(LT) --mode=compile --tag=CC $(CC)