# # Makefile for example of XML processing with all kinds of handlers # and features. # default: example # #--------------------------- MK=$(FLIB_ROOT)/fortran.mk include $(MK) #--------------------------- # # Uncomment the following line for debugging support # FFLAGS=$(FFLAGS_DEBUG) # LIBS=$(LIB_PREFIX)$(LIB_STD) -lflib # OBJS= m_handlers.o example.o example: $(OBJS) $(FC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) # clean: rm -f *.o example *.$(MOD_EXT) #