12 lines
161 B
Plaintext
12 lines
161 B
Plaintext
DIRS = clidemo \
|
|
srvrdemo
|
|
|
|
all: $(DIRS)
|
|
|
|
$(DIRS):
|
|
cd $@
|
|
echo *** $@ *** >>$(MSTOOLS)\samples\ole.tmp
|
|
nmake -a -i 1>>$(MSTOOLS)\samples\ole.tmp 2>&1
|
|
cd ..
|
|
|