vhdl-prng/refimpl/Makefile

25 lines
434 B
Makefile
Raw Normal View History

#
# Makefile for software reference implementations of PRNGs.
#
# This makefile works with GCC under Linux.
#
2016-11-29 09:23:56 +01:00
CC = gcc
CXX = g++
CFLAGS = -std=c11 -Wall -O2
CXXFLAGS = -std=c++11 -Wall -O2
.PHONY: all
2020-08-11 18:13:48 +02:00
all: ref_xoroshiro128plus ref_mt19937 ref_trivium
2020-08-11 18:13:48 +02:00
ref_xoroshiro128plus: ref_xoroshiro128plus.c
ref_mt19937: ref_mt19937.cpp
2016-11-23 23:38:51 +01:00
ref_trivium: ref_trivium.cpp
.PHONY: clean
clean:
2020-08-11 18:13:48 +02:00
$(RM) ref_xoroshiro128plus ref_mt19937 ref_trivium