#******************************************************************************
#            Makefile for the GNU Spice GUI Project Schematic Files           *
#                                                                             *
#  Started     : 20/01/2004                                                   *
#  Last update : 10/09/2009                                                   *
#  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 : 

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

clean : 
	rm -f Makefile~ */*.gnucap.?? */*.ngspice.?? */*.ckt */*.sim  \
	*.gnucap.?? *.ngspice.?? *.ckt *.sim *.log */*.log */*.sch~

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

.PHONY : clean

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