blob: 397cef950d778c827d1ba37e5b43677a4182c786 (
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
28
|
#!/usr/bin/make
PKG = fhhtnc
SRC = git://github.com/trustatfhh/tnc-fhh.git
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
CONFIG_OPTS = \
-DCOMPONENT=all \
-DNAL=8021x
all: install
.$(PKG)-cloned:
git clone $(SRC) $(PKG)
mkdir $(PKG)/build
@touch $@
.$(PKG)-configured: .$(PKG)-cloned
cd $(PKG)/build && cmake $(CONFIG_OPTS) ../
@touch $@
.$(PKG)-built: .$(PKG)-configured
cd $(PKG)/build && make -j $(NUM_CPUS)
@touch $@
install: .$(PKG)-built
cd $(PKG)/build && make install
|