diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-07-18 13:05:02 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-07-18 13:05:02 +0200 |
commit | dfeb92a46b2228b4f3886a9c06502ccd0dde5562 (patch) | |
tree | 20cebe482ae2954f4597489658b27828f5316921 /icepack/Makefile | |
download | icestorm-dfeb92a46b2228b4f3886a9c06502ccd0dde5562.tar.gz icestorm-dfeb92a46b2228b4f3886a9c06502ccd0dde5562.tar.bz2 icestorm-dfeb92a46b2228b4f3886a9c06502ccd0dde5562.zip |
Import of icestorm-snapshot-150322.zip
Diffstat (limited to 'icepack/Makefile')
-rw-r--r-- | icepack/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
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 + |