Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/amachronic/microtar.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-11-05 03:22:38 +0300
committerAidan MacDonald <amachronic@protonmail.com>2021-11-05 03:24:35 +0300
commit665c1c2f7f74178c16eb3a3ef0a7bf9afd25ecd8 (patch)
tree108d0d15a04ef1960f0fc9a0e89b781fc4f64c25
parent206ed3e826a0f18a56b3ada4a0176ac57c987a80 (diff)
Add dependency information to Makefile
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b362943..fc076f0 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,10 @@ $(MICROTAR_LIB): $(MICROTAR_OBJ)
%.o: %.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
+src/microtar.o: src/microtar.h
+src/microtar-stdio.o: src/microtar.h
+mtar.o: src/microtar.h
+
clean:
rm -f $(MICROTAR_LIB) $(MICROTAR_OBJ)
rm -f $(MTAR_BIN) $(MTAR_OBJ)