Rev 78886 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#-*- Makefile -*-include ../../gnuwin32/MkRules# triop.h says this does not work, but useful to debug wchar conversions.trio-CPPFLAGS=-DTRIO_FEATURE_WIDECHAR=1CPPFLAGS = -I../../include -I../../main# trionan.c and triostr.c are included by trio.oOBJS = compat.o trio.oTARGETLIB = libtrio.aall: $(TARGETLIB)$(TARGETLIB): $(OBJS)ifneq "$(LTO)" ""## Apparently with gcc 8.3 we need to avoid LTO: works with 9.2.compat.o: compat.c$(CC) $(CPPFLAGS) -O3 -Wall -pedantic $(DEFINES) -c $< -o $@endifclean:@$(RM) *~ $(OBJS)distclean: clean@$(RM) $(TARGETLIB)