head	1.1;
access;
symbols;
locks
	maiello:1.1; strict;
comment	@# @;


1.1
date	2011.11.25.19.08.10;	author maiello;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@###CFLAGS = -g -O2    
CFLAGS = -g          ## Use this if you want to debug the spice matrix
DEFINES = -DDEBUGGA
INCLUDES = 
LIBS = -lstdc++

SIMULATION = Simulation.o Application.o gnuplot_i.o  
CC=g++

.cc.o:
      #	$(CC) -c -Wa,-a=$(*).lst,-ggdb $(CFLAGS) $(DEFINES) $(INCLUDES) $<
	$(CC) -c $(CFLAGS) $(DEFINES) $(INCLUDES) $<

all::	Simulation


Simulation.o:	Simulation.cc  


Application.o:   App_SpiceTest.hpp App_TestRC.hpp  App_TestRC1.hpp  App_TestRLC.hpp App_CMChoke.hpp App_DualCMChoke.hpp App_Observer.hpp  Application.cc Simulation.hpp gnuplot_i.hpp




gnuplot_i.o:	gnuplot_i.cc gnuplot_i.hpp




Simulation: $(SIMULATION)
       # $(CC) -o $@@ -Wl,-Map=$@@.map,--cref $(CFLAGS) $(SIMULATION) $(LIBS)
	$(CC) -o $@@ $(CFLAGS) $(SIMULATION) $(LIBS)

@
