mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
rename directors examples to tests
This commit is contained in:
parent
34bbd31a5f
commit
75734ba074
10 changed files with 12 additions and 12 deletions
12
hermit/.gitignore
vendored
12
hermit/.gitignore
vendored
|
@ -14,11 +14,11 @@ include/hermit/config.inc
|
|||
tools/*.img
|
||||
tools/*_proxy
|
||||
tools/make_initrd
|
||||
usr/examples/hello
|
||||
usr/examples/hello++
|
||||
usr/examples/hellof
|
||||
usr/examples/jacobi
|
||||
usr/examples/stream
|
||||
usr/examples/thr_hello
|
||||
usr/tests/hello
|
||||
usr/tests/hello++
|
||||
usr/tests/hellof
|
||||
usr/tests/jacobi
|
||||
usr/tests/stream
|
||||
usr/tests/thr_hello
|
||||
usr/x86/
|
||||
usr/tmp/
|
||||
|
|
|
@ -5,8 +5,8 @@ CC = gcc
|
|||
CFLAGS = -O2 -Wall
|
||||
HEXDUMP = hexdump
|
||||
LDFLGAS =
|
||||
INITRDFILES = ../usr/examples/hello #$(shell find ../usr/examples -perm -u+r+x -type f)
|
||||
PROXYFILES = $(shell find ../usr/examples -perm -u+r+x -type f)
|
||||
INITRDFILES = ../usr/tests/hello #$(shell find ../usr/tests -perm -u+r+x -type f)
|
||||
PROXYFILES = $(shell find ../usr/tests -perm -u+r+x -type f)
|
||||
|
||||
# Prettify output
|
||||
V = 0
|
||||
|
|
|
@ -22,8 +22,8 @@ default:
|
|||
|
||||
demo:
|
||||
@echo Build demo applications
|
||||
$Q$(MAKE) CC_FOR_TARGET=$(CC_FOR_TARGET) CXX_FOR_TARGET=$(CXX_FOR_TARGET) CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" OBJCOPY_FOR_TARGET=$(OBJCOPY_FOR_TARGET) -C examples depend
|
||||
$Q$(MAKE) CC_FOR_TARGET=$(CC_FOR_TARGET) CXX_FOR_TARGET=$(CXX_FOR_TARGET) CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" OBJCOPY_FOR_TARGET=$(OBJCOPY_FOR_TARGET) -C examples
|
||||
$Q$(MAKE) CC_FOR_TARGET=$(CC_FOR_TARGET) CXX_FOR_TARGET=$(CXX_FOR_TARGET) CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" OBJCOPY_FOR_TARGET=$(OBJCOPY_FOR_TARGET) -C tests depend
|
||||
$Q$(MAKE) CC_FOR_TARGET=$(CC_FOR_TARGET) CXX_FOR_TARGET=$(CXX_FOR_TARGET) CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" OBJCOPY_FOR_TARGET=$(OBJCOPY_FOR_TARGET) -C tests
|
||||
|
||||
$(ARCH):
|
||||
$Q$(MKDIR) $(TMP)
|
||||
|
@ -64,12 +64,12 @@ $(TMP)/gcc:
|
|||
|
||||
clean:
|
||||
@echo Cleaning toolchain
|
||||
$Q$(MAKE) -C examples clean
|
||||
$Q$(MAKE) -C tests clean
|
||||
|
||||
veryclean:
|
||||
@echo Propper cleaning of the toolchain
|
||||
$Q$(MAKE) -C pte veryclean
|
||||
$Q$(MAKE) -C libgomp veryclean
|
||||
$Q$(MAKE) -C examples veryclean
|
||||
$Q$(MAKE) -C tests veryclean
|
||||
$Q$(RM) $(TOPDIR)/$(ARCH)
|
||||
$Q$(RM) $(TMP)
|
||||
|
|
Loading…
Add table
Reference in a new issue