vhdl-prng/refimpl/Makefile

25 lines
406 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
2016-11-23 23:38:51 +01:00
all: ref_xoroshiro ref_mt19937 ref_trivium
ref_xoroshiro: ref_xoroshiro.c
ref_mt19937: ref_mt19937.cpp
2016-11-23 23:38:51 +01:00
ref_trivium: ref_trivium.cpp
.PHONY: clean
clean:
2016-11-23 23:38:51 +01:00
$(RM) ref_xoroshiro ref_mt19937 ref_trivium