Makefile: Spaces -> Tabs

This commit is contained in:
ave 2020-12-05 00:25:33 +03:00
parent be98d6b2c5
commit 87c3e4928a
1 changed files with 5 additions and 5 deletions

View File

@ -5,19 +5,19 @@ DEPS = lodepng.cpp
TARGET = lfe
ifeq ($(PREFIX),)
PREFIX := /usr/local
PREFIX := /usr/local
endif
all: $(TARGET)
$(TARGET): $(TARGET).cpp
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
install: $(TARGET)
install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
clean:
$(RM) $(TARGET)
$(RM) $(TARGET)