Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
96b23585
Commit
96b23585
authored
Jan 13, 2006
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Module xtt created
parent
d17f3e3b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
9 deletions
+87
-9
xtt/exp/inc/src/os_linux/hw_x86/makefile
xtt/exp/inc/src/os_linux/hw_x86/makefile
+63
-0
xtt/lib/flow/src/os_linux/hw_x86/makefile
xtt/lib/flow/src/os_linux/hw_x86/makefile
+3
-3
xtt/lib/ge/src/os_linux/hw_x86/makefile
xtt/lib/ge/src/os_linux/hw_x86/makefile
+3
-3
xtt/lib/glow/src/os_linux/hw_x86/makefile
xtt/lib/glow/src/os_linux/hw_x86/makefile
+3
-3
xtt/lib/xtt/src/os_linux/hw_x86/makefile
xtt/lib/xtt/src/os_linux/hw_x86/makefile
+15
-0
No files found.
xtt/exp/inc/src/os_linux/hw_x86/makefile
0 → 100644
View file @
96b23585
include
$(pwre_dir_symbols)
ifndef
variables_mk
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/variables.mk
endif
ifndef
variables_mk
include
$(pwre_kroot)/tools/bld/src/$(os_name)/variables.mk
endif
ifndef
rules_mk
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/rules.mk
endif
ifndef
rules_mk
include
$(pwre_kroot)/tools/bld/src/$(os_name)/rules.mk
endif
vpath %.h $(hw_source)
:
$(os_source):$(co_source)
source_dirs
=
$(hw_source)
$(os_source)
$(co_source)
sources
:=
$(
sort
\
$(
foreach
file,
\
$(
foreach
dir
,
\
$(source_dirs)
,
\
$(
wildcard
$(dir)
/
*
.h
)
\
)
,
$(
notdir
$(file)
)
\
)
\
)
export_includes
:=
$(
addprefix
$(inc_dir)
/,
$(sources)
)
clean_includes
:=
$(
patsubst
%.h,clean_%.h,
$(sources)
)
.SUFFIXES
:
.PHONY
:
all init copy lib exe clean realclean
\
$(clean_includes)
all
:
init copy lib exe
init
:
copy
:
$(export_includes) $(exe_dir)/pwrp_rules.mk
lib
:
exe
:
clean
:
realclean
:
$(clean_includes)
$(clean_includes)
:
clean_%.h : %.h
@
$(rm)
$(rmflags)
$(inc_dir)
/
$*
.h
$(exe_dir)/pwrp_rules.mk
:
../../pwrp_rules.mk
@
$(log_h_h)
@
$(cp)
$(cpflags)
$(source)
$(target)
xtt/lib/flow/src/os_linux/hw_x86/makefile
View file @
96b23585
include
$(pwre_dir_symbols)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_
s
root)/tools/bld/src/$(type_name)_generic.mk
include
$(pwre_
k
root)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
...
...
xtt/lib/ge/src/os_linux/hw_x86/makefile
View file @
96b23585
include
$(pwre_dir_symbols)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_
s
root)/tools/bld/src/$(type_name)_generic.mk
include
$(pwre_
k
root)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
...
...
xtt/lib/glow/src/os_linux/hw_x86/makefile
View file @
96b23585
include
$(pwre_dir_symbols)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_
s
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
-include
$(pwre_
k
root)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_
s
root)/tools/bld/src/$(type_name)_generic.mk
include
$(pwre_
k
root)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
...
...
xtt/lib/xtt/src/os_linux/hw_x86/makefile
0 → 100644
View file @
96b23585
include
$(pwre_dir_symbols)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_kroot)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
-include
../special.mk
-include
special.mk
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment