home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-03-05 | 770 b | 22 lines |
- # ----------------------------------------------------------------------------
- # Makefile for generating afcsamp.zip.
- # You must have $\java\bin\ to use this Makefile.
- # ----------------------------------------------------------------------------
-
- all: zip
-
- ROOT = ..\
-
- DEST_DIR = .
-
- ZIP = $(ROOT)\java\bin\zip21.exe
-
- # ----------------------------------------------------------------------------
- # Delete the generated zip file if any.
- # And create the zip file for AFC102 Samples.
- # ----------------------------------------------------------------------------
- zip:
- @if exist $(DEST_DIR)\afcsamp.zip del $(DEST_DIR)\afcsamp.zip
- @$(ZIP) -r afcsamp * -x *.dsp
- @echo Zip file for AFC102 Samples has been generated at $(DEST_DIR)\afcsamp.zip
-