diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-01-04 19:31:17 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-01-04 19:31:17 +0100 |
commit | bf660412e88c0645d002d4daa2586152552e05f1 (patch) | |
tree | 9d042a62ce72e6b4e60f20e20498cd637be69af9 /icepll/Makefile | |
parent | 75421c016f02ffe0b95b470896a2f9799716922a (diff) | |
download | icestorm-bf660412e88c0645d002d4daa2586152552e05f1.tar.gz icestorm-bf660412e88c0645d002d4daa2586152552e05f1.tar.bz2 icestorm-bf660412e88c0645d002d4daa2586152552e05f1.zip |
Added "icepll" PLL parameters calculator
Diffstat (limited to 'icepll/Makefile')
-rw-r--r-- | icepll/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
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 + |