Use ./configure to detect arc4random and use it if present

This commit is contained in:
Renaud Allard
2015-09-03 16:11:12 +02:00
parent 047ecf672c
commit 6743d0e6b7
5 changed files with 4013 additions and 2 deletions

18
Makefile.in Normal file
View File

@@ -0,0 +1,18 @@
# -----------------------------------
# Fiche MAKEFILE
# https://github.com/solusipse/fiche
# solusipse.net
# -----------------------------------
CFLAGS+=-pthread -O2
CFLAGS+=@LIBS@
all: fiche
install: fiche
install -m 0755 fiche ${PREFIX}/bin
clean:
rm -f fiche
.PHONY: clean