$ make
make: *** No rule to make target '-lgomp', needed by 'src/HexEditorGui.o'. Stop.
IMHO it is not good to try to create $(LIBS), especially not "-lgomp".
Below patch fixes this by introducing $(LOCAL_LIBS), which are meant to be "made" by make. Then $(LIBS) is just "-lgomp", which is an external dependency of the project.
patch.txt
PS: Maybe there is a better name than LOCAL_LIBS.
$ make
make: *** No rule to make target '-lgomp', needed by 'src/HexEditorGui.o'. Stop.
IMHO it is not good to try to create $(LIBS), especially not "-lgomp".$(LOCAL_LIBS), which are meant to be "made" by make. Then $ (LIBS) is just "-lgomp", which is an external dependency of the project.
Below patch fixes this by introducing
patch.txt
PS: Maybe there is a better name than LOCAL_LIBS.