FreeCalypso > hg > freecalypso-reveng
view tfo/Makefile @ 404:ceb71478414d
tfo: find-is-hdr program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Mar 2023 18:16:22 +0000 |
parents | miscprog/Makefile@4307b57229d3 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 STD= find-is-hdr PROGS= ${STD} all: ${PROGS} ${STD}: ${CC} ${CFLAGS} -o $@ $@.c find-is-hdr: find-is-hdr.c clean: rm -f ${PROGS} *.o *errs *.out