From 1f4e4d7724e91fe0ee11cdce7b7eace2b307f0cf Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 19 Oct 2015 17:02:56 +0200 Subject: Started work on icetime --- icetime/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 icetime/Makefile (limited to 'icetime/Makefile') diff --git a/icetime/Makefile b/icetime/Makefile new file mode 100644 index 0000000..aead84a --- /dev/null +++ b/icetime/Makefile @@ -0,0 +1,25 @@ +# CXX = clang +CXX ?= clang +LDLIBS = -lm -lstdc++ +CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11 -I/usr/local/include +CC = $(CXX) +DESTDIR = /usr/local + +all: icetime + +icetime: icetime.o + +install: all + cp icetime $(DESTDIR)/bin/icetime + +uninstall: + rm -f $(DESTDIR)/bin/icetime + +clean: + rm -f icetime + rm -f *.o *.d + +-include *.d + +.PHONY: all install uninstall clean + -- cgit v1.2.3