FreeCalypso > hg > freecalypso-reveng
view Makefile @ 62:c20dedad87a0
Pirelli PCB RE: got some success with the LCD connector pinout
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 02 Dec 2013 07:44:41 +0000 |
parents | 1e797f846563 |
children | b8753e705e1a |
line wrap: on
line source
CC= gcc CFLAGS= -O2 STD= factdiff mokosrec2bin CRYPTO= imeibrute pirimei PROGS= ${STD} ${CRYPTO} all: ${PROGS} ${STD}: ${CC} ${CFLAGS} -o $@ $@.c ${CRYPTO}: ${CC} ${CFLAGS} -o $@ $@.c -lcrypto factdiff: factdiff.c imeibrute: imeibrute.c mokosrec2bin: mokosrec2bin.c pirimei: pirimei.c clean: rm -f ${PROGS} *.o *errs *.out