aboutsummaryrefslogtreecommitdiffstats
path: root/icemulti/Makefile
blob: f195e61664469934385fb6716b85fbde962149c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# CXX = clang
CXX ?= clang
LDLIBS = -lm -lstdc++
CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11
CC = $(CXX)
DESTDIR = /usr/local

all: icemulti

icemulti: icemulti.o

install: all
	cp icemulti $(DESTDIR)/bin/icemulti

uninstall:
	rm -f $(DESTDIR)/bin/icemulti

clean:
	rm -f icemulti
	rm -f *.o *.d

-include *.d

.PHONY: all install uninstall clean