# # File: makefile.nt # Author: Julian Smart # Created: 1993 # Updated: Ulrich Leodolter , 1995 # Copyright: (c) 1993, AIAI, University of Edinburgh # # "%W% %G%" # # Makefile : Builds ItsyBitsy small frame library for Windows NT !include <..\..\src\ntwxwin.mak> ITSYDIR = $(WXDIR)\contrib\itsybits ITSYINC = $(ITSYDIR) ITSYLIB = $(ITSYDIR)\itsy.lib INC = OBJECTS = itsybits.obj all: $(ITSYLIB) wx: cd $(WXDIR)\src\msw nmake -f makefile.nt cd $(ITSYDIR) $(ITSYLIB): $(OBJECTS) -erase $(ITSYLIB) $(implib) @<< -out:$(ITSYLIB) -machine:$(CPU) $(OBJECTS) << itsybits.obj: itsybits.$(SRCSUFF) itsybits.h cl @<< $(CPPFLAGS2) /Od /c /Tp $*.$(SRCSUFF) << clean: -erase *.obj -erase *.exe -erase *.lib -erase *.sbr -erase *.pdb cleanall: clean