This website requires JavaScript.
Explore
Help
Sign in
0ct0pu5
/
ladybird
Watch
1
Star
0
Fork
You've already forked ladybird
0
mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced
2024-12-04 21:40:33 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
7
5b9fe0cf46
ladybird
/
Applications
/
Makefile
4 lines
88 B
Makefile
Raw
Normal View
History
Unescape
Escape
Build: Only look at SUBDIRS with Makefiles If a directory is renamed or deleted before 'make clean', git will delete the Makefile but leave all of the object and dependency files around. When make would try to recurse into that directory from the wildcard, it would error out since there is no Makefile.
2020-02-25 17:21:28 +00:00
SUBDIRS
:=
$(
patsubst %/Makefile,%/,
$(
wildcard */Makefile
)
)
Build: clean up build system, use one shared Makefile Allow everything to be built from the top level directory with just 'make', cleaned with 'make clean', and installed with 'make install'. Also support these in any particular subdirectory. Specifying 'make VERBOSE=1' will print each ld/g++/etc. command as it runs. Kernel and early host tools (IPCCompiler, etc.) are built as object.host.o so that they don't conflict with other things built with the cross-compiler.
2019-12-18 23:35:46 +00:00
i
n
c
l
u
d
e
.
.
/
M
a
k
e
f
i
l
e
.
s
u
b
d
i
r
Reference in a new issue
Copy permalink