This commit is contained in:
Tracker-Friendly 2024-02-14 21:06:58 +00:00
parent e560a4cf55
commit 15b7e17eb1
1 changed files with 3 additions and 2 deletions

View File

@ -13,8 +13,9 @@ TARGET = pageburger
.PHONY: all clean
all: $(TARGET)
all: pageburger
pageburger: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $(TARGET) $(LIBS)
@ -24,6 +25,6 @@ $(TARGET): $(OBJS)
clean:
rm -f $(OBJS) $(TARGET)
install:
install: pageburger
mkdir -p $(DESTDIR)
cp pageburger $(DESTDIR)