diff options
author | Camil Staps | 2015-07-06 21:09:07 +0200 |
---|---|---|
committer | Camil Staps | 2015-07-06 21:09:07 +0200 |
commit | e57799ca28f6f6b5474a0a1a4b3e14e241c2abd2 (patch) | |
tree | 659bde0e613e3a24e86eca7ecef3966c0282f0ba /bitlength/Makefile | |
parent | Test tuple (diff) |
Bitlength & ccall
Diffstat (limited to 'bitlength/Makefile')
-rw-r--r-- | bitlength/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitlength/Makefile b/bitlength/Makefile new file mode 100644 index 0000000..4d9ba47 --- /dev/null +++ b/bitlength/Makefile @@ -0,0 +1,10 @@ +all: consumer run + +producer.o: + cc -c producer.c + +consumer: producer.o + clm -tst -l producer.o consumer -o consumer + +run: + ./consumer |