#
# Don't forget to touch gabc-score-determination.c
# and touch gabc-score-determination.h before make.
# If gabc-score-determination.c is older than
# gabc-score-determination.y, errorneously bison -y is called
# according to the default rule in gnu make.
#
OPTIMIZE = -O2
CC=cl
DEFS=-DWIN32 -D__STDC_VERSION__=199901 -wd4819 -wd4028 -DNO_KPSE_DLL=1
INCS=-I. -I.. -I../..
CFLAGS=-nologo -MT $(OPTIMIZE) -favor:blend $(DEFS) $(INCS)
OBJS=gabc-elements-determination.obj gabc-glyphs-determination.obj \
gabc-notes-determination-l.obj gabc-score-determination.obj \
gabc-score-determination-l.obj \
gabc-score-determination-y.obj gabc-write.obj

libgabc.lib: $(OBJS)
	lib -out:$@ $(OBJS)

clean::
	rm -f *.lib *.obj *~

include depend.mk
