#------------------------------------------------------------------------
#
# File  : Makefile for code outside the core CLIB/E hierarchy.
#
# Author: Stephan Schulz
#
# Changes
#
# <1> Mon Apr 10 00:33:40 GMT 2000
#     New
#
#------------------------------------------------------------------------

include ../Makefile.vars

# Project specific variables

PROJECT = CSSCPA_filter
LIB     = $(PROJECT)

all: $(LIB)

depend: *.c *.h
	$(MAKEDEPEND)

# Remove all automatically generated files

clean:
	@touch does_exist.o $(PROJECT)
	@rm *.o $(PROJECT)
	@echo Removed compiled files

# Services (provided by the master Makefile)

include ../Makefile.services

CSSCPA = CSSCPA_filter.o cex_csscpa.o \
            ../lib/CLAUSES.a ../lib/ORDERINGS.a ../lib/TERMS.a\
            ../lib/INOUT.a ../lib/BASICS.a

$(LIB): $(CSSCPA)
	$(LD) -o CSSCPA_filter $(CSSCPA)

include Makefile.dependencies

