home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_07.cab
/
Makefile
< prev
next >
Wrap
Makefile
|
1997-10-25
|
838b
|
28 lines
# Top Level Makefile -- can be used to compile both the Simple
# and the Power component (in the intermediate folder).
#===============================================================
!IF "$(PROCESSOR_ARCHITECTURE)"=="x86"
#===============================================================
SAMPLES= simple intermediate
#===============================================================
!ELSE
#===============================================================
SAMPLES=
#===============================================================
!ENDIF
#===============================================================
all:
for %%i in ($(SAMPLES) ) do \
cd %%i & $(MAKE) cpyshared & $(MAKE) -$(MAKEFLAGS) all & cd ..
clean:
for %%i in ($(SAMPLES)) do \
cd %%i & $(MAKE) -$(MAKEFLAGS) clean & cd ..