FreeCalypso > hg > freecalypso-reveng
view mysteryffs/Makefile @ 22:00ad22936ca5
MysteryFFS dump1 tool written
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 18 May 2013 19:21:09 +0000 |
parents | d41c555d7f1d |
children | 671db68916c7 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= dump1 scan1 all: ${PROGS} ${PROGS}: ${CC} ${CFLAGS} -o $@ $@.c dump1: dump1.c scan1: scan1.c clean: rm -f ${PROGS} *.o *errs *.out