isodrive: first commit

This commit is contained in:
Marcel Alexandru Nitan
2023-01-31 20:36:12 +02:00
commit f55ca622aa
7 changed files with 916 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CC = g++
CFLAGS = -I./src/include
SRCS = src/util.cpp src/configfsisomanager.cpp src/main.cpp
OBJS = $(SRCS:.cpp=.o)
TARGET = isodrive
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $(TARGET) $(OBJS)
%.o: %.cpp
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f $(TARGET) $(OBJS)
.PHONY: all clean