X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=e8cad3ae0095ee811cffb9ef40d2c5b442ef3245;hb=50f548312764a481b3ee3b9153b0b738e2ecca17;hp=523a3e4e060914a467746551976a39cfe55ce3d5;hpb=b55dae20c1b56dac452dda6ab2831ea6388c079b;p=mtp.git diff --git a/Makefile b/Makefile index 523a3e4..e8cad3a 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,23 @@ -######################################################################### -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the version 3 of the GNU General Public License # -# as published by the Free Software Foundation. # -# # -# 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 . # -# # -# Written by Francois Fleuret # -# Copyright (C) Idiap Research Institute # -# Contact for comments & bug reports # -######################################################################### +# mtp is the ``Multi Tracked Paths'', an implementation of the +# k-shortest paths algorithm for multi-target tracking. +# +# Copyright (c) 2012 Idiap Research Institute, http://www.idiap.ch/ +# Written by Francois Fleuret +# +# This file is part of mtp. +# +# mtp is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 3 as +# published by the Free Software Foundation. +# +# mtp 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 selector. If not, see . ifeq ($(STATIC),yes) LDFLAGS=-static -lm @@ -64,6 +66,6 @@ Makefile.depend: *.h *.cc Makefile $(CC) $(CXXFLAGS) -M *.cc > Makefile.depend clean: - \rm -f mtp *.o Makefile.depend TAGS + \rm -f mtp mtp_example *.o Makefile.depend TAGS -include Makefile.depend