blob: a168bacecccea69f07e74c8f2add1dfab5883cf4 (
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
26
27
|
include ../config.mk
ifeq ($(STATIC),1)
LDFLAGS += -static
endif
all: icemulti$(EXE)
icemulti$(EXE): icemulti.o
$(CXX) -o $@ $(LDFLAGS) $^ $(LDLIBS)
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp icemulti $(DESTDIR)$(PREFIX)/bin/icemulti
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/icemulti
clean:
rm -f icemulti
rm -f icemulti.exe
rm -f *.o *.d
-include *.d
.PHONY: all install uninstall clean
|