Makefile: Spaces -> Tabs
This commit is contained in:
parent
be98d6b2c5
commit
87c3e4928a
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -5,19 +5,19 @@ DEPS = lodepng.cpp
|
||||||
TARGET = lfe
|
TARGET = lfe
|
||||||
|
|
||||||
ifeq ($(PREFIX),)
|
ifeq ($(PREFIX),)
|
||||||
PREFIX := /usr/local
|
PREFIX := /usr/local
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: $(TARGET)
|
all: $(TARGET)
|
||||||
|
|
||||||
$(TARGET): $(TARGET).cpp
|
$(TARGET): $(TARGET).cpp
|
||||||
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
|
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
|
||||||
|
|
||||||
install: $(TARGET)
|
install: $(TARGET)
|
||||||
install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
|
install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(TARGET)
|
$(RM) $(TARGET)
|
||||||
|
|
Loading…
Reference in a new issue