This website requires JavaScript.
Explore
Help
Sign In
LadybirdBrowser
/
ladybird
Watch
1
Star
1
Fork
0
You've already forked ladybird
mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced
2024-11-08 23:42:53 +03:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
987dbedf4a
ladybird
/
Servers
/
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 20:21:28 +03: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-19 02:35:46 +03:00
i
n
c
l
u
d
e
.
.
/
M
a
k
e
f
i
l
e
.
s
u
b
d
i
r
Reference in New Issue
Copy Permalink