i made a make file:
CC = g++
CFLAGS = -std=c++11 -Wall
TARGET = mistWOW
SRCS = boot_into_gui.cpp calculator.cpp chat_to_mist.cpp compile.cpp \
download_extensions.cpp games.cpp git_clone.cpp jokes.cpp \
logout.cpp make_files.cpp mist_1.3.0.cpp mist_help.cpp \
mist_installation.cpp mist_music_player.cpp mist_text.cpp \
terminal_only.cpp
OBJS = $(filter-out mist_1.3.0.o, $(SRCS:.cpp=.o))
all: $(TARGET)
$(TARGET): mist_1.3.0.o $(OBJS)
$(CC) $(CFLAGS) -o $@ $^
%.o: %.cpp
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f $(OBJS) $(TARGET)
got error for chat_to_mist.cpp so changed an include location.
#include "/home/noob/Downloads/projects/MIST/mists_gimmicks/alphahex.cpp"
retried making, and there's following errors: