Small adjustments to appease the android build

This commit is contained in:
2022-11-14 09:27:32 +00:00
parent 813b94faf5
commit da9afb7e5b
8 changed files with 29 additions and 7 deletions

View File

@@ -55,3 +55,24 @@ else
endif
rebuild: clean all
#utils for the manual android build
INCLUDEDIR=include
SOURCEDIR=bundle
$(INCLUDEDIR):
mkdir $(INCLUDEDIR)
$(SOURCEDIR):
mkdir $(SOURCEDIR)
sourcelist:
@echo $(addprefix ../airport/,$(wildcard Toy/source/*.c) $(wildcard core/*.c) $(wildcard source/*.c)) > source.list
bundleincludes: $(INCLUDEDIR)
cp $(addprefix ../airport/,$(wildcard Toy/source/*.h) $(wildcard core/*.h) $(wildcard source/*.h)) $(INCLUDEDIR)
bundlesource: $(SOURCEDIR)
cp $(addprefix ../airport/,$(wildcard Toy/source/*.c) $(wildcard core/*.c) $(wildcard source/*.c)) $(SOURCEDIR)