1# NMake Makefile portion for code generation and
2# intermediate build directory creation
3# Items in here should not need to be edited unless
4# one is maintaining the NMake build files.
5
6# Create the build directories
7$(CFG)\$(PLAT)\gendef	\
8$(CFG)\$(PLAT)\atkmm:
9	@-mkdir $@
10
11# Generate .def files
12$(CFG)\$(PLAT)\atkmm\atkmm.def: $(GENDEF) $(CFG)\$(PLAT)\atkmm $(atkmm_OBJS)
13	$(CFG)\$(PLAT)\gendef.exe $@ $(ATKMM_LIBNAME) $(CFG)\$(PLAT)\atkmm\*.obj
14