slocc/Makefile
Rekketstone c4a9481181 sync
everything
2025-01-13 14:35:27 -07:00

19 lines
321 B
Makefile

include config.mk
.PHONY: all clean install uninstall
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c
install: $(TARGET)
install -d $(DESTDIR)$(PREFIX)/bin
install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
clean:
rm -f $(TARGET)