Makefiles cleanup and readme updated
This commit is contained in:
parent
98711e1cb5
commit
f053ecde04
|
@ -38,10 +38,10 @@ LiteXL: $(LiteXL_OBJ)
|
||||||
@echo "Compiling $<"
|
@echo "Compiling $<"
|
||||||
@$(compiler) -c $< -o $*.o $(CFLAGS) $(INCPATH) $(DFLAGS)
|
@$(compiler) -c $< -o $*.o $(CFLAGS) $(INCPATH) $(DFLAGS)
|
||||||
|
|
||||||
src/dirmonitor.o: src/dirmonitor.c src/platform/amigaos4.h
|
src/dirmonitor.o: src/dirmonitor.c src/platform/morphos.h
|
||||||
|
|
||||||
src/main.o: src/main.c src/api/api.h src/rencache.h \
|
src/main.o: src/main.c src/api/api.h src/rencache.h \
|
||||||
src/renderer.h src/platform/amigaos4.h src/dirmonitor.h
|
src/renderer.h src/platform/morphos.h src/dirmonitor.h
|
||||||
|
|
||||||
src/rencache.o: src/rencache.c
|
src/rencache.o: src/rencache.c
|
||||||
|
|
||||||
|
|
16
Makefile.os4
16
Makefile.os4
|
@ -14,14 +14,20 @@ outfile := lite
|
||||||
compiler := gcc
|
compiler := gcc
|
||||||
cxxcompiler := g++
|
cxxcompiler := g++
|
||||||
|
|
||||||
INCPATH := -Isrc -Ilib/dmon -I/sdk/local/newlib/include/SDL2 -I/sdk/local/common/include/freetype2
|
INCPATH := -Isrc -Ilib/dmon -I/sdk/local/newlib/include/SDL2 \
|
||||||
|
-I/sdk/local/common/include/lua52 -I/sdk/local/common/include/freetype2
|
||||||
|
|
||||||
DFLAGS := -D__USE_INLINE__ -DLITE_XL_DATA_USE_EXEDIR
|
DFLAGS := -D__USE_INLINE__ -DLITE_XL_DATA_USE_EXEDIR
|
||||||
# -DLITE_USE_SDL_RENDERER
|
# -DLITE_USE_SDL_RENDERER
|
||||||
# -Wextra -Wall
|
# -Wextra -Wall
|
||||||
CFLAGS := -Werror -Wwrite-strings -O3 -g -std=gnu11 -fno-strict-aliasing
|
|
||||||
|
CFLAGS := -Werror -Wwrite-strings -O2 -g -gstabs -std=gnu11 -fno-strict-aliasing
|
||||||
# "-gstabs -finstrument-functions -fno-inline -DPROFILING"
|
# "-gstabs -finstrument-functions -fno-inline -DPROFILING"
|
||||||
LFLAGS := -mcrt=newlib -static-libgcc -static-libstdc++ -lauto -lpcre2 -lSDL2 -llua -lagg -lfreetype -lm -lunix -lpthread -athread=native
|
|
||||||
# " -lprofyle"
|
LFLAGS := -mcrt=newlib -static-libgcc -static-libstdc++ -lauto \
|
||||||
|
-lpcre2 -lSDL2 -llua52 -lagg -lfreetype -lz -lm \
|
||||||
|
-lpthread -athread=native -gstabs
|
||||||
|
# -lprofyle
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -35,7 +41,7 @@ clean:
|
||||||
|
|
||||||
LiteXL: $(LiteXL_OBJ)
|
LiteXL: $(LiteXL_OBJ)
|
||||||
@echo "Linking LiteXL"
|
@echo "Linking LiteXL"
|
||||||
@$(cxxcompiler) -o $(outfile) $(LiteXL_OBJ) $(LFLAGS)
|
@$(compiler) -o $(outfile) $(LiteXL_OBJ) $(LFLAGS)
|
||||||
|
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
|
|
|
@ -197,11 +197,20 @@ https://git.walkero.gr/walkero/lite-xl/issues
|
||||||
|
|
||||||
## [2.0.3r3] - future
|
## [2.0.3r3] - future
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed non existing path crashes on OS4
|
- Fixed non existing path crashes on OS4 and MorphOS
|
||||||
- Fixed editor refresh whenever init.lua is changed, no matter the working
|
- Fixed editor refresh whenever init.lua is changed, no matter the working
|
||||||
folder
|
folder
|
||||||
- Fixed an issue when the user added a directory in the project that
|
- Fixed an issue when the user added a directory in the project that
|
||||||
already existed
|
already existed
|
||||||
|
- Fixed locale issue on start for MorphOS. Now it should start just fine
|
||||||
|
no matter what locale the user has on his system.
|
||||||
|
- Fixed "Find" on MorphOS that was not working (shortcut CTRL+F)
|
||||||
|
- If the user selects to change the project folder and inserts Sys: or any
|
||||||
|
partition name, the included folders will be listed as suggestions
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Removed linking with unix on OS4 build
|
||||||
|
- Makefiles updated
|
||||||
|
|
||||||
## [2.0.3r2] - 2022-06-18
|
## [2.0.3r2] - 2022-06-18
|
||||||
### Added
|
### Added
|
||||||
|
|
Loading…
Reference in New Issue