diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
commit | 87c71978e556d532a5b91a653514a92acec9a1b7 (patch) | |
tree | b7533e088f1adf07ec46a32e9cf33251a147bbe2 /code/ecp/crypto/arc4random/Makefile | |
parent | b9d0e6e824f222e7f6647806b6afb3c2f4727ab5 (diff) |
arc4random added
Diffstat (limited to 'code/ecp/crypto/arc4random/Makefile')
-rwxr-xr-x | code/ecp/crypto/arc4random/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/code/ecp/crypto/arc4random/Makefile b/code/ecp/crypto/arc4random/Makefile new file mode 100755 index 0000000..3d74290 --- /dev/null +++ b/code/ecp/crypto/arc4random/Makefile @@ -0,0 +1,14 @@ +include ../../Makefile.platform +CFLAGS=$(CFLAGS_PL) $(PIC) + +obj = arc4random.o + + +all: $(obj) +dep: all + +%.o: %.c + $(CC) $(CFLAGS) -c $< + +clean: + rm -f *.o *.a |