From 93f71a9cfe2f8e96afd0d8f4e0d5e34b042ed8d8 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 22 Jan 2017 16:56:43 +0100 Subject: [PATCH] Properly declare dependencies in the Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 6f517cb..1785903 100644 --- a/Makefile +++ b/Makefile @@ -11,3 +11,6 @@ libtrycatch.a: trycatch.o example: example.o libtrycatch.a ${CC} -L. -ltrycatch -o $@ $< + +trycatch.o: trycatch.c trycatch.h +example.o: example.c trycatch.h