From bf660412e88c0645d002d4daa2586152552e05f1 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 4 Jan 2016 19:31:17 +0100 Subject: Added "icepll" PLL parameters calculator --- icepll/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 icepll/Makefile (limited to 'icepll/Makefile') diff --git a/icepll/Makefile b/icepll/Makefile new file mode 100644 index 0000000..9a190f6 --- /dev/null +++ b/icepll/Makefile @@ -0,0 +1,22 @@ +include ../config.mk +LDLIBS = -lm -lstdc++ +CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11 -I/usr/local/include + +all: icepll + +icepll: icepll.o + +install: all + mkdir -p $(DESTDIR)$(PREFIX)/bin + cp icepll $(DESTDIR)$(PREFIX)/bin/icepll + +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/icepll + +clean: + rm -f icepll *.o *.d + +-include *.d + +.PHONY: all install uninstall clean + -- cgit v1.2.3