#******************************************************************************
#                                  Makefile                                   *
#                                 ----------                                  *
# Description : House-keeping for the GNU Spice GUI Project library files.    *
# Started     : 06/04/2004                                                   *
# Last update : 28/09/2011                                                   *
# Copyright   : (C) 2004 by MSWaters                                         *
# Email       : M.Waters@bom.gov.au                                          *
#******************************************************************************

#******************************************************************************
#                                                                             *
#     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 2 of the License, or       *
#     (at your option) any later version.                                     *
#                                                                             *
#******************************************************************************

#******************************************************************************
# Specify string values
#******************************************************************************

# Root directory
ROOT := $(shell pwd)

#******************************************************************************
# Make these targets
#******************************************************************************

all :

#******************************************************************************
# Perform installation tasks
#******************************************************************************

install :
	cp -r $(ROOT) $(INSTALLDIR)/share/gspiceui

#******************************************************************************
# Perform uninstall tasks
#******************************************************************************

uninstall :
	rm -fr $(INSTALLDIR)/share/gspiceui/lib

#******************************************************************************
# Remove temporary files and backup files
#******************************************************************************

clean :
	rm -f Makefile~ sym/*.sym~

#******************************************************************************
# Specify phony targets
#******************************************************************************

.PHONY : install uninstall clean

#******************************************************************************
