From 7cc18ffd115ad83e8e2151893d9975ac75486ce5 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Fri, 25 Aug 2017 12:59:22 +0200 Subject: [PATCH] rename/move some files; fix some stuff regarding this --- booker.pl => doc/booker.pl | 2 +- poster.tex => doc/poster.tex | 0 tommath.src => doc/tommath.src | 0 makefile | 2 +- makefile.shared | 2 +- makefile.include => makefile_include.mk | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename booker.pl => doc/booker.pl (98%) rename poster.tex => doc/poster.tex (100%) rename tommath.src => doc/tommath.src (100%) rename makefile.include => makefile_include.mk (100%) diff --git a/booker.pl b/doc/booker.pl similarity index 98% rename from booker.pl rename to doc/booker.pl index c2abae6..e865cdd 100644 --- a/booker.pl +++ b/doc/booker.pl @@ -68,7 +68,7 @@ while () { # 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]:"; diff --git a/poster.tex b/doc/poster.tex similarity index 100% rename from poster.tex rename to doc/poster.tex diff --git a/tommath.src b/doc/tommath.src similarity index 100% rename from tommath.src rename to doc/tommath.src diff --git a/makefile b/makefile index 5812fe4..889033b 100644 --- a/makefile +++ b/makefile @@ -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) diff --git a/makefile.shared b/makefile.shared index 4e9bf85..7d2311f 100644 --- a/makefile.shared +++ b/makefile.shared @@ -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) diff --git a/makefile.include b/makefile_include.mk similarity index 100% rename from makefile.include rename to makefile_include.mk