FreeCalypso > hg > freecalypso-reveng
view mpffs/Makefile @ 40:7ceab8bfacb3
mpffs-cat and mpffs-xtr converted to use the new extra chunk handling
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jul 2013 07:04:01 +0000 |
parents | 390be89892c4 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= mpffs-cat mpffs-dbgls mpffs-ls mpffs-xtr INSTDIR=/usr/local/bin CAT_OBJS= common.o cat.o find.o DBGLS_OBJS= common.o dbgls.o find.o LS_OBJS= common.o ls.o XTR_OBJS= common.o xtr.o all: ${PROGS} mpffs-cat: ${CAT_OBJS} ${CC} -o $@ ${CAT_OBJS} mpffs-dbgls: ${DBGLS_OBJS} ${CC} -o $@ ${DBGLS_OBJS} mpffs-ls: ${LS_OBJS} ${CC} -o $@ ${LS_OBJS} mpffs-xtr: ${XTR_OBJS} ${CC} -o $@ ${XTR_OBJS} install: install -c ${PROGS} ${INSTDIR} clean: rm -f *.o *.out *errs ${PROGS}