diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,5 @@ -all: cryptrobber encrypt -.PHONY: all clean encrypt cryptrobber +all: cryptrobber encrypt test +.PHONY: all clean cryptrobber encrypt test cryptrobber: smack strans ./smack main.sts | ./strans > $@ @@ -9,6 +9,10 @@ encrypt: smack strans ./smack encrypt.sts | ./strans > $@ chmod 0755 $@ +test: smack strans + ./smack test.sts | ./strans > $@ + chmod 0755 $@ + smack: smack.c gcc $< -o $@ |