summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Albers <thomas@thomaslabs.org>2023-08-06 10:15:44 +0200
committerThomas Albers <thomas@thomaslabs.org>2023-08-06 10:15:44 +0200
commit057da7518e5be8f1307377d107c37b2825fa554d (patch)
tree8432ca88d2e41424aaf1df86f49a4a2d498d2402 /Makefile
parentb50e1f74202e18ea10f1f2cd46e9e02a9d4f0e65 (diff)
Expand tabs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 8e1c0dd..b32cd80 100644
--- a/Makefile
+++ b/Makefile
@@ -7,20 +7,20 @@ CFLAGS = -Werror -Wpedantic -I. -g -DUSE_READLINE
LDFLAGS = -lreadline
$(TARGET) : zup.h $(OBJ)
- @echo ' (LD)' $(OBJ)
- @gcc $(LDFLAGS) -o $@ $(OBJ)
+ @echo ' (LD)' $(OBJ)
+ @gcc $(LDFLAGS) -o $@ $(OBJ)
%.o : %.c zup.h
- @echo ' (CC)' $<
- @gcc $(CFLAGS) -c -o $@ $<
+ @echo ' (CC)' $<
+ @gcc $(CFLAGS) -c -o $@ $<
all : $(TARGET)
.PHONY : install
install :
- mkdir -p $(PREFIX)/bin
- install $(TARGET) $(PREFIX)/bin/$(TARGET)
+ mkdir -p $(PREFIX)/bin
+ install $(TARGET) $(PREFIX)/bin/$(TARGET)
.PHONY : clean
clean :
- rm $(TARGET) $(OBJ)
+ rm $(TARGET) $(OBJ)