-
Notifications
You must be signed in to change notification settings - Fork 7
/
maintainer.sh
executable file
·29 lines (25 loc) · 1.15 KB
/
maintainer.sh
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
#!/bin/sh
aclocal # Set up an m4 environment
autoconf # Generate configure from configure.ac
automake --add-missing # Generate Makefile.in from Makefile.am
#Test configure & build
./configure
make
#install sgxtop / sgxstat link
#
# -- uncomment if install is needed.
#make install
#echo "+-----------------------------------------------------------------------------------------------------------------+"
#echo "| sgxtop/sgxstat installed in /usr/local/bin/ (default) or at the path supplied in --prefix option of configure. |"
#echo "| Check if the installed path is in your PATH environment variable. |"
#echo "| $ make uninstall - to remove installed binaries. |"
#echo "+-----------------------------------------------------------------------------------------------------------------+"
#uninstall will remove sgxtop/sgxstat from --prefix path (default: /usr/local/bin/)
#
# -- uncomment if uninstall is needed.
#make uninstall
#Cleanup
#files created by auto* tools (m4 files, configure etc) will remain.
#
# -- uncomment if cleanup is needed.
#make clean