Move source files from src/ to sources/.

Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
Grzegorz Kowal 2019-01-28 09:14:20 -02:00
parent a489837d63
commit f8b65842af
28 changed files with 4 additions and 4 deletions

View File

@ -39,4 +39,4 @@ NDIMS = 2
#
# path for temporary files during compilation (uncomment if you wish to use it)
#
#OBJSDIR := /tmp/${USER}/amun-code/obj
#OBJSDIR := /tmp/${USER}/amun-code/objects

View File

@ -3,8 +3,8 @@
# directories indicating where the source files are, where the object files
# should be created and where to save the resulting executable file
SRCSDIR := ../src
OBJSDIR := ./obj
SRCSDIR := ../sources
OBJSDIR := ./objects
DESTDIR := .
#-------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@
#
# Example:
#
# mkdep.sh ../src ./obj
# mkdep.sh ../sources ./objects
#
# Requirements: awk, sort, uniq
#