mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:17:36 +00:00
LibHTML: Let's just build host-side tools in makeall.sh instead
Instead of trying to build the host-side code generator helpers right before we need them in the LibHTML build process, just build them ahead of time in makeall.sh, like we already do for {IPC,Form}Compiler.
This commit is contained in:
parent
85d7afb6df
commit
da23864c8d
2 changed files with 2 additions and 6 deletions
|
@ -79,13 +79,9 @@ CSS/DefaultStyleSheetSource.cpp: CSS/Default.css Scripts/GenerateStyleSheetSourc
|
|||
@echo "GENERATE $@"; Scripts/GenerateStyleSheetSource.sh default_stylesheet_source $< > $@
|
||||
|
||||
CSS/PropertyID.h: CSS/Properties.json CodeGenerators/Generate_CSS_PropertyID_h/Generate_CSS_PropertyID_h.cpp
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_h clean
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_h
|
||||
@echo "GENERATE $@"; CodeGenerators/Generate_CSS_PropertyID_h/Generate_CSS_PropertyID_h $< > $@
|
||||
|
||||
CSS/PropertyID.cpp: CSS/Properties.json CodeGenerators/Generate_CSS_PropertyID_cpp/Generate_CSS_PropertyID_cpp.cpp
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_cpp clean
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_cpp
|
||||
@echo "GENERATE $@"; CodeGenerators/Generate_CSS_PropertyID_cpp/Generate_CSS_PropertyID_cpp $< > $@
|
||||
|
||||
%.o: %.cpp $(GENERATED_SOURCES)
|
||||
|
@ -94,8 +90,6 @@ CSS/PropertyID.cpp: CSS/Properties.json CodeGenerators/Generate_CSS_PropertyID_c
|
|||
-include $(OBJS:%.o=%.d)
|
||||
|
||||
clean:
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_h clean
|
||||
make -C CodeGenerators/Generate_CSS_PropertyID_cpp clean
|
||||
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d $(GENERATED_SOURCES)
|
||||
|
||||
$(LIBRARY): $(GENERATED_SOURCES) $(LIBHTML_OBJS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue