view ffstools/tiffs-rd/Makefile @ 767:77ab12ccdec1
gsm-fw/g23m-gsm/sms/Makefile: link xipcode.o
author |
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
date |
Sun, 12 Oct 2014 00:25:54 +0000 (2014-10-12) |
parents |
10afa4d39a7b |
children |
|
line source
CC= gcc
CFLAGS= -O2
PROG= tiffs
OBJS= basics.o cat.o globals.o inode.o ls.o main.o object.o tree.o xtr.o
HDRS= globals.h pathname.h struct.h types.h
INSTBIN=/usr/local/bin
all: ${PROG}
${PROG}: ${OBJS}
${CC} -o $@ ${OBJS}
${OBJS}: ${HDRS}
install: ${PROG}
mkdir -p ${INSTBIN}
install -c ${PROG} ${INSTBIN}
clean:
rm -f ${PROG} *.o *.out *errs