mirror of
https://github.com/envmodules/modules.git
synced 2026-06-18 00:06:53 +08:00
17 lines
318 B
Makefile
17 lines
318 B
Makefile
all: initdir
|
|
|
|
distclean: clean
|
|
|
|
initdir:
|
|
make -C init all
|
|
|
|
clean:
|
|
rm -f *.log *.sum
|
|
make -C init clean
|
|
|
|
test:
|
|
MODULEVERSION=3.1.1; export MODULEVERSION; \
|
|
OBJDIR=`pwd`; export OBJDIR; \
|
|
TESTSUITEDIR=`cd ../testsuite;pwd`; export TESTSUITEDIR; \
|
|
runtest --srcdir $$TESTSUITEDIR --objdir $$OBJDIR --tool modules
|