# +-------------------------------------------------------------------------+
# |                     Script Plus Plus vers. 0.2.50    |
# | Copyright (c) Andrey Vikt. Stolyarov <crocodil_AT_croco.net>  2003-2007 |
# | ----------------------------------------------------------------------- |
# | This is free software.  Permission is granted to everyone to use, copy  |
# |        or modify this software under the terms and conditions of        |
# |                 GNU LESSER GENERAL PUBLIC LICENSE, v. 2.1               |
# |     as published by Free Software Foundation (see the file LGPL.txt)    |
# |                                                                         |
# | Please visit http://www.croco.net/software/scriptpp to get a fresh copy |
# | ----------------------------------------------------------------------- |
# |   This code is provided strictly and exclusively on the "AS IS" basis.  |
# | !!! THERE IS NO WARRANTY OF ANY KIND, NEITHER EXPRESSED NOR IMPLIED !!! |
# +-------------------------------------------------------------------------+




CXX = g++
CXXFLAGS = -Wall -g
CFLAGS = -Wall -g

FILES = scrvar.o scrvect.o

LIBNAME = scriptpp
LIBFILES = lib$(LIBNAME).a
HEADERFILES = $(FILES:.o=.hpp)	


lib$(LIBNAME).a: $(FILES)	
	$(AR) -crs $@ $(FILES)

%.o:	%.cpp
	$(CXX) $(CXXFLAGS) -c $< -o $@

scrtest: tests.o scrvar.o scrvect.o scrtest.cpp
	$(CXX) $(CXXFLAGS) $^ -o $@

run:	scrtest
	./scrtest

clean:
	rm -f *.o *~ scrtest buf lib$(LIBNAME).a

include install.mk
