home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-05-29 | 667 b | 27 lines |
- CC=gcc -c
- LD=gcc
- OPTIM= #-O
- DEBUG= #-g
- CFLAGS= -DAMIGA $(DEBUG) $(OPTIM)
- LDFLAGS= $(DEBUG)
- OBJS=mkisofs.o tree.o write.o hash.o rock.o exclude.o amiga.o convert.o
-
- mkisofs: $(OBJS) unix/unixlib.lib
- $(LD) -o mkisofs $(LDFLAGS) $(OBJS)
-
- tree.o: tree.c mkisofs.h iso9660.h exclude.h
- write.o: write.c mkisofs.h iso9660.h
- hash.o: hash.c mkisofs.h
- rock.o: rock.c mkisofs.h iso9660.h
- exclude.o: exclude.c exclude.h
- amiga.o: amiga.c mkisofs.h
- convert.o: convert.c mkisofs.h
- mkisofs.o: mkisofs.c iso9660.h mkisofs.h exclude.h
-
- clean:
- rm -f *.o *.dbg *.lnk mkisofs
-
- dist:
- rm -f *.o *.dbg *.lnk unix/*.o unix/*.lib unix/testreaddir unix/teststat
- rm -f unix/*.lnk unix/*.dbg
-