From dfeb92a46b2228b4f3886a9c06502ccd0dde5562 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 18 Jul 2015 13:05:02 +0200 Subject: Import of icestorm-snapshot-150322.zip --- icepack/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 icepack/Makefile (limited to 'icepack/Makefile') diff --git a/icepack/Makefile b/icepack/Makefile new file mode 100644 index 0000000..06aeaeb --- /dev/null +++ b/icepack/Makefile @@ -0,0 +1,25 @@ + +CC = clang +CXX = clang +LDFLAGS = -lm -lstdc++ +CFLAGS = -MD -Os -Wall -std=c99 +CXXFLAGS = -MD -Os -Wall -std=c99 + +all: iceunpack + +iceunpack: iceunpack.o + +install: all + cp iceunpack /usr/local/bin/iceunpack + +uninstall: + rm -f /usr/local/bin/iceunpack + +clean: + rm -f iceunpack + rm -f *.o *.d + +-include *.d + +.PHONY: install uninstall clean + -- cgit v1.2.3