mirror of
https://github.com/MiSTer-devel/Linux-Kernel_MiSTer.git
synced 2026-04-26 03:04:36 +00:00
13 lines
161 B
Makefile
13 lines
161 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CC = m68k-cbm-amigados-gcc
|
|
CFLAGS = -Wall -O2
|
|
|
|
|
|
All: dmesg
|
|
|
|
|
|
dmesg: dmesg.c
|
|
$(CC) $(CFLAGS) -o dmesg dmesg.c -noixemul
|
|
|