# BDF2BDB - BDF font data conveter
# Copyright (c)2006 satoshi akabane
#
# $Id: Makefile,v 1.1 2008/01/11 15:29:18 akabane Exp $

MAKE =		make.exe

SRC_DIR =	src
TEST_DIR =	test

all:						# make all modules and executable object file
	cd $(SRC_DIR)
	$(MAKE) all
	cd ..
	cd $(TEST_DIR)
	$(MAKE) all

clean:						# clean all libraries, relocatable objects and executable file
	cd $(SRC_DIR)
	$(MAKE) clean
	cd ..
	cd $(TEST_DIR)
	$(MAKE) clean

# end of Makefile
