From: Jay Freeman (saurik) Date: Sun, 28 Jun 2015 02:20:31 +0000 (-0700) Subject: Make clean and all share the list of files built. X-Git-Tag: v0.9.5000~1 X-Git-Url: https://git.saurik.com/cydget.git/commitdiff_plain/6cbff705d639aa067a21959c69ede5edee799148 Make clean and all share the list of files built. --- diff --git a/makefile b/makefile index 8e3ec48..91710c6 100644 --- a/makefile +++ b/makefile @@ -3,10 +3,12 @@ jscore := JavaScriptCore-521 cycc = cycc -i2.0 -o$@ -- $(filter %.mm,$^) -Xarch_armv6 -marm -g0 -O2 -I. -F/System/Library/PrivateFrameworks -all: CydgetLoader.dylib WebCycript WebCycriptLockScreen CydgetSettings +all := CydgetLoader.dylib WebCycript WebCycriptLockScreen CydgetSettings + +all: $(all) clean:: - rm -f CydgetLoader.dylib CydgetSettings WebCycriptLockScreen + rm -f $(all) CydgetLoader.dylib: CydgetLoader.mm makefile $(cycc) -dynamiclib -framework Foundation -framework UIKit -framework CydiaSubstrate