#------------------------------------------------------------------------------------------------------------------------------------ # Copyright 2020 Fabrice Roy # # Contact: fabrice.roy@obspm.fr # # This file is part of pFoF. # # pFoF 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, either version 3 of the License, or # (at your option) any later version. # # pFoF 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 pFoF. If not, see . # # author Fabrice Roy # # Makefile for pfof_snap #------------------------------------------------------------------------------------------------------------------------------------ all: pfof_snap pfof_snap: cd src && make test: cd test && make doc: cd doc && make install: cd src && make install uninstall: cd src && make uninstall clean: cd src && make clean cd test && make clean cd doc && make clean .PHONY: all pfof_snap test doc install uninstall clean