1%platform darwin
2%platform freebsd
3%platform netbsd
4%platform openbsd
5%target Makefile
6#
7# InspIRCd -- Internet Relay Chat Daemon
8#
9#   Copyright (C) 2017 Sadie Powell <sadie@witchery.services>
10#
11# This file is part of InspIRCd.  InspIRCd is free software: you can
12# redistribute it and/or modify it under the terms of the GNU General Public
13# License as published by the Free Software Foundation, version 2.
14#
15# This program is distributed in the hope that it will be useful, but WITHOUT
16# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18# details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program.  If not, see <http://www.gnu.org/licenses/>.
22#
23
24# This file will be installed as `Makefile` on BSD derivatives. When a user runs
25# BSD Make it will be picked up as the default makefile even on systems like
26# OpenBSD which have removed BSDMakefile support. If they run GNU Make then it
27# will ignore this file and run GNUmakefile instead.
28
29all clean configureclean debug deinstall distclean help install:
30	@echo "InspIRCd no longer supports BSD Make. You should install GNU Make instead."
31	@exit 1
32