fpc/tests/utils/Makefile.fpc
olle bdaab01714 Major makefile rework for tests directory:
* differentiated between driver and test environment
  + added utils/Makefile.fpc, under the driver environment
  * units/Makefile.fpc is under the test environment
  * Makefile controls everything
  * plus lot of smaller changes
2004-04-27 23:13:49 +00:00

30 lines
414 B
Makefile

#
# Makefile.fpc for Free Pascal testing utilities
#
[prerules]
ifeq ($(USESQL),YES)
DBDIGEST=dbdigest
endif
[install]
fpcpackage=y
[default]
fpcdir=../..
[require]
packages = mysql
[target]
programs = dotest fail testfail digest $(DBDIGEST)
[rules]
# To always clean dbdigest regardless of USESQL
clean: fpc_clean
-$(DEL) dbdigest$(EXEEXT)
cleanall: fpc_cleanall
-$(DEL) dbdigest$(EXEEXT)