mirror of
https://github.com/nitanmarcel/isodrive.git
synced 2026-03-13 04:17:24 +00:00
isodrive: first commit
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user