Carl
Carl
Thanks for your quick response. My makefile has been working fine with macOS which is BSD Unix.
It also works with Ubuntu, though. BTW, this is the error message. It warns and generates .a file. Then it continues to the next .cpp file which depends on .a...
I really like your a-shell because it's way faster than iSH which runs on x86 emulator. I really want to make it work so that I can do my development...
Here I my mkefile (partial) all: $(LIB).a t $(GTEST)test $(TOOLS)atan $(TOOLS)ctan $(TOOLS)SongFinder $(TOOLS)EnumWords $(TOOLS)SrtParser test .cpp.o: $(SRC) $(INC) $(CXX) $(OPT) -c -w -o $(
Thanks, @holzschu! I will modify my makefile. Just a side note, I also tried .sh script file (with chmod 777) but that didn't work. I also create a file (without...
$(SRC) is defined as this: SRC = $(wildcard *.cpp) $(wildcard dic/*.cpp) $(wildcard semi/*.cpp) $(wildcard semi/dorian/*.cpp) $(wildcard semi/savoy/*.cpp) $(wildcard music/tritone/*.cpp) And "echo $(SRC)" was empty. So I guess "wildcard" may not...
Following suffix rule worked: .cpp.o: $(SRC) $(INC) $(CXX) $(OPT) -c -w -o $(