summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-07-15 13:23:08 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:28 -0400
commit60f60425cd1cd307cbf6012eb6d04115533ca094 (patch)
tree1ed14cbddf733cae4a354c97deb4e29f8e6303af
parent17e48f5221d0a17d91700e89cfc8ef5a72fda1f5 (diff)
downloadroux-60f60425cd1cd307cbf6012eb6d04115533ca094.tar.gz
object files depend on lisc.h
-rw-r--r--lisc/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisc/Makefile b/lisc/Makefile
index 583d0cd..381452d 100644
--- a/lisc/Makefile
+++ b/lisc/Makefile
@@ -6,6 +6,8 @@ CFLAGS = -Wall -Wextra -std=c99 -g
 $(BIN): $(OBJ)
 	$(CC) $(LDFLAGS) $(OBJ) -o $@
 
+$(OBJ): lisc.h
+
 .PHONY: clean
 clean:
 	rm -f $(BIN) $(OBJ)