From 28bf5306c2d5ecd266de2db9513b56f3bc490f39 Mon Sep 17 00:00:00 2001 From: TLINDEN Date: Wed, 2 Sep 2015 06:05:39 +0200 Subject: [PATCH] made recursive --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8861c96..ff1ea4e 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ DST = twenty4 OBJS = twenty4.o all: $(DST) + cd analyze && make + cd sbox && make $(DST): $(OBJS) gcc $(LDFLAGS) $(OBJS) -o $(DST) @@ -13,4 +15,5 @@ $(DST): $(OBJS) clean: rm -f *.o $(DST) - + cd analyze && make clean + cd sbox && make clean