mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 22:03:55 +00:00
6 lines
208 B
Makefile
6 lines
208 B
Makefile
SRCS=imagecon.c
|
|
HOST_WARNINGS=-pedantic-errors -Wfatal-errors -Wall -Werror -Wextra -Wno-unused-parameter -Wshadow
|
|
HOST_CFLAGS=$(HOST_WARNINGS)
|
|
|
|
imagecon: $(SRCS)
|
|
gcc $(HOST_CFLAGS) $(SRCS) -o imagecon -lpng
|