1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2026-05-11 08:34:57 +00:00
Files
AmigaExamples/tools/makeadf/Makefile
2016-03-01 21:00:27 +11:00

16 lines
292 B
Makefile

MAKEADF=./out/makeadf
SRCS=makeadf.c
HOST_WARNINGS=-pedantic-errors -Wfatal-errors -Wall -Werror -Wextra -Wno-unused-parameter -Wshadow
HOST_CFLAGS=$(HOST_WARNINGS)
$(MAKEADF): out bin $(SRCS)
gcc $(HOST_CFLAGS) $(SRCS) -o $(MAKEADF)
out:
mkdir out
bin:
mkdir bin
clean:
rm -r out bin