1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 20:08:46 +10:00
collapseos/tools/Makefile
Virgil Dupras 8ff4b18c51 tools: add memdumpb
In C this time. Python/Perl code is barely terser than C for these little
tools. Why bother with interpreted?
2019-12-08 22:33:33 -05:00

14 lines
211 B
Makefile

CFLAGS ?= -Wall
MEMDUMP_TGT = memdumpb
MEMDUMP_SRC = memdump.c
all: ${MEMDUMP_TGT}
${MEMDUMP_TGT}: ${MEMDUMP_SRC}
${CC} ${CFLAGS} ${MEMDUMP_SRC} -o ${MEMDUMP_TGT}
.PHONY: clean
clean:
rm -f ${MEMDUMP_TGT}