PHP-GTK Client for Gemini Protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Define compiler and flags
|
|
|
|
CXX = g++
|
|
|
|
CXXFLAGS = `pkg-config --cflags gtkmm-4.0 glibmm-2.68 sqlite3`
|
|
|
|
LDFLAGS = `pkg-config --libs gtkmm-4.0 glibmm-2.68 sqlite3`
|
|
|
|
|
|
|
|
# Define target executable and source files
|
|
|
|
TARGET = bin/Yoda
|
|
|
|
SRCS = src/main.cpp\
|
|
|
|
src/app/browser.cpp\
|
|
|
|
src/app/browser/header.cpp\
|
|
|
|
src/app/browser/header/menu.cpp\
|
|
|
|
src/app/browser/header/tab.cpp\
|
|
|
|
src/app/browser/main.cpp\
|
|
|
|
src/app/browser/main/tab.cpp\
|
|
|
|
src/app/browser/main/tab/label.cpp\
|
|
|
|
src/lib/database.cpp\
|
|
|
|
src/lib/database/session.cpp
|
|
|
|
|
|
|
|
OBJS = $(SRCS:.cpp=.o)
|
|
|
|
|
|
|
|
# Default target
|
|
|
|
all: $(TARGET)
|
|
|
|
|
|
|
|
# Rule to build the executable
|
|
|
|
$(TARGET): $(OBJS)
|
|
|
|
$(CXX) -o $@ $(OBJS) $(LDFLAGS)
|
|
|
|
|
|
|
|
# Rule to build object files from source files
|
|
|
|
%.o: %.cpp
|
|
|
|
$(CXX) $(CXXFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
# Rule to clean up build files
|
|
|
|
clean:
|
|
|
|
rm -f $(TARGET) $(OBJS)
|