forked from roleoroleo/mqttv4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (24 loc) · 838 Bytes
/
Makefile
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
29
#
# This file is part of mqttv4 (https://github.com/TheCrypt0/mqttv4).
# Copyright (c) 2018-2019 Davide Maggioni.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
all: mqttv4
mv ./src/mqttv4 ./
clean: mqttv4
rm -f mqttv4
install: mqttv4
mqttv4:
$(MAKE) -C src/ $(MAKECMDGOALS)
.PHONY: mqttv4