# Top level makefile for CCCC # This distribution is a compilation of code, some of which comes from # different sources, some of which builds different (e.g. Win32 DLL) kinds # of targets. # I would like to make it less inconsistent, but the first stage is to make # it work... .PHONY : pccts cccc test install all : pccts cccc test pccts : cd pccts ; gmake cccc : cd cccc ; gmake -f posixgcc.mak test : cd test ; gmake -f posix.mak install : cd install ; gmake -f install.mak