mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 09:55:29 +07:00
12 lines
126 B
Makefile
12 lines
126 B
Makefile
|
|
||
|
CC = m68k-cbm-amigados-gcc
|
||
|
CFLAGS = -Wall -O2
|
||
|
|
||
|
|
||
|
All: dmesg
|
||
|
|
||
|
|
||
|
dmesg: dmesg.c
|
||
|
$(CC) $(CFLAGS) -o dmesg dmesg.c -noixemul
|
||
|
|