# ===[ $RCSfile: Makefile,v $ ]===========================================
#
#    This item is the property of GTECH Corporation, West Greenwich,
#    Rhode Island, and contains confidential and trade secret information.
#    It may not be transferred from the custody or control of GTECH except
#    as authorized in writing by an officer of GTECH.  Neither this item
#    nor the information it contains may be used, transferred, reproduced,
#    published, or disclosed, in whole or in part, and directly or
#    indirectly, except as expressly authorized by an officer of GTECH,
#    pursuant to written agreement.
#
#    Copyright (c) 2003 GTECH Corporation.  All rights reserved.
#
#   =======================================================================

# Makefile (non-recursive) for the MESC default record piece
#
# $Id: Makefile,v 1.2 2004/04/14 21:35:12 cmayncvs Exp $

TARGET =	$(EXETARGET)
EXETARGET =	mescdef
INC =		-I.. -I../../inc
GENFILES =	*.conf

SRCS =		mescdef.c

DOXYGEN  = /usr/bin/doxygen
DOXYGEN_DIRS = html
DOXYFILE = Doxyfile

all:
	gcc $(CFLAGS) $(INC) $(SRCS) -o $(TARGET)

.PHONY: docs
docs:
	$(DOXYGEN) $(DOXYFILE)

.PHONY: clean
clean:
	@rm -f $(TARGET) *.o

.PHONY: spotless
spotless:
	@rm -Rf $(DOXYGEN_DIRS) $(TARGET) *.o $(GENFILES)

# End of $Id: Makefile,v 1.2 2004/04/14 21:35:12 cmayncvs Exp $

