#
# Copyright (C) 2016 FAUmachine Team <info@faumachine.org>.
#
# This program is free software. You can redistribute it and/or modify it
# under the terms of the GNU General Public License, either version 2 of
# the License, or (at your option) any later version. See COPYING.
#

all: logcmp

logcmp: logcmp.c
	cc -g -Wall -Wextra -o logcmp logcmp.c
clean distclean::
	rm -f logcmp
