1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
all: @echo "nmake targets:" @echo " clean" @echo " simple" @echo " tcp" clean: @call nmake /f Makefile.simple /A /NOLOGO clean @call nmake /f Makefile.tcp /A /NOLOGO clean simple: @call nmake /f Makefile.simple /A /NOLOGO all tcp: @call nmake /f Makefile.tcp /A /NOLOGO all