Skip to content
Snippets Groups Projects
Commit 37f870fc authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] makefile.install was git-ignored

parent 97f62b11
No related branches found
No related tags found
No related merge requests found
##########################################################################
# #
# This file is part of Frama-C. #
# #
# Copyright (C) 2007-2022 #
# CEA (Commissariat à l'énergie atomique et aux énergies #
# alternatives) #
# #
# you can redistribute it and/or modify it under the terms of the GNU #
# Lesser General Public License as published by the Free Software #
# Foundation, version 2.1. #
# #
# It 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 Lesser General Public License for more details. #
# #
# See the GNU Lesser General Public License version 2.1 #
# for more details (enclosed in the file licenses/LGPLv2.1). #
# #
##########################################################################
# --------------------------------------------------------------------------
# --- OPAM Installation
# --------------------------------------------------------------------------
.PHONY: install uninstall
install:
@echo "Installing Ivette (OPAM)"
mkdir -p $(PREFIX)/bin
install ivette/ivette-opam.sh $(PREFIX)/bin/ivette
mkdir -p $(PREFIX)/lib/frama-c
tar zcf $(PREFIX)/lib/frama-c/ivette.tgz ivette
uninstall:
@echo "Removing Ivette"
@rm -fr $(PREFIX)/bin/ivette
@rm -fr $(PREFIX)/lib/frama-c/ivette.tgz
...@@ -94,11 +94,11 @@ build: [ ...@@ -94,11 +94,11 @@ build: [
install: [ install: [
[make "PREFIX=%{prefix}%" "MANDIR=%{mandir}%" "install"] [make "PREFIX=%{prefix}%" "MANDIR=%{mandir}%" "install"]
[make "PREFIX=%{prefix}%" "-C" "doc" "install"] {with-doc} [make "PREFIX=%{prefix}%" "-C" "doc" "install"] {with-doc}
[make "PREFIX=%{prefix}%" "-f" "ivette/makefile.install" "install"] [make "PREFIX=%{prefix}%" "-f" "ivette/makefile.opam" "install"]
] ]
remove: [ remove: [
[make "PREFIX=%{prefix}%" "-f" "ivette/makefile.install" "uninstall"] [make "PREFIX=%{prefix}%" "-f" "ivette/makefile.opam" "uninstall"]
] ]
run-test: [ run-test: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment