Makefile
3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#***************************************************************************************************
# Makefile *
# ---------- *
# Description : House-keeping for the GNU Spice GUI Project library files. *
# Started : 2004-04-06 *
# Last update : 2015-01-09 *
# Copyright : (C) 2004 by MSWaters *
#***************************************************************************************************
#***************************************************************************************************
# *
# This program 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. *
# *
#***************************************************************************************************
#***************************************************************************************************
# Any or all of the values in this section may be set below or on the command line when envoking
# make eg. :
#
# make DESTDIR=/new/dest/dir install
# make DESTDIR=/new/dest/dir uninstall
#
# Note : Values specified on the command line over-ride those specified below.
#***************************************************************************************************
# Destination (install) directory
DESTDIR = /usr/local
#***************************************************************************************************
# Specify string values
#***************************************************************************************************
# Root directory
ROOT := $(shell pwd)
#***************************************************************************************************
# Make these targets
#***************************************************************************************************
all :
#***************************************************************************************************
# Perform installation tasks
#***************************************************************************************************
install :
cp -r $(ROOT) $(DESTDIR)/share/gspiceui
#***************************************************************************************************
# Perform uninstall tasks
#***************************************************************************************************
uninstall :
rm -fr $(DESTDIR)/share/gspiceui/lib
#***************************************************************************************************
# Remove temporary files and backup files
#***************************************************************************************************
clean :
rm -f Makefile~ sym/*.sym~
#***************************************************************************************************
# Specify phony targets
#***************************************************************************************************
.PHONY : install uninstall clean
#***************************************************************************************************