1
2CC =		m68k-cbm-amigados-gcc
3CFLAGS =	-Wall -O2
4
5
6All:		dmesg
7
8
9dmesg:		dmesg.c
10		$(CC) $(CFLAGS) -o dmesg dmesg.c -noixemul
11