Codebase list adolc / upstream/2.1.5 Makefile.win
upstream/2.1.5

Tree @upstream/2.1.5 (Download .tar.gz)

Makefile.win @upstream/2.1.5raw · history · blame

##############################################################################
## Makefile.am -- Process this file with automake to produce Makefile.in
## Revision: $Id: Makefile.win 37 2009-05-28 12:56:44Z awalther $
##
## Copyright (C) Andreas Kowarz
##
## This file is part of ADOL-C. This software is provided as open source.
## Any use, reproduction, or distribution of the software constitutes 
## recipient's acceptance of the terms of the accompanying license file.
## 
##############################################################################


library:
	@if exist adolc\error_out del adolc\error_out
	@make -f Makefile.win -C adolc adolc.dll
ifeq ($(EXA),1)
	@if exist examples\error_out del examples\error_out
	@make -f Makefile.win -C examples docexa
endif

clean:
	@if exist *~ del *~
	@make -f Makefile.win -C adolc clean
	@make -f Makefile.win -C examples clean
	@echo "Cleaned up!"