# Copyright (C) 1996 Keith Whitwell. # This file may only be copied under the terms of the GNU Library General # Public License - see the file COPYING in the lib3d distribution. # MSDOS makefile for djgpp v2 and GNU make # Contributed by Markus F.X.J. Oberhumer # # This is a ready-to-run Makefile. # just type 'make -f Makefile.dj2' to build the library and all demos. # .PHONY: default all lib lib3d primitive demos clean MAKEFILE = Makefile.dj2 default all: lib primitive demos lib lib3d: $(MAKE) -C src -f $(MAKEFILE) lib primitive: $(MAKE) -C primitive -f $(MAKEFILE) lib demos: $(MAKE) -C demos -f $(MAKEFILE) all clean distclean: $(MAKE) -C src -f $(MAKEFILE) $@ $(MAKE) -C primitive -f $(MAKEFILE) $@ $(MAKE) -C demos -f $(MAKEFILE) $@