mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
12 lines
175 B
Makefile
12 lines
175 B
Makefile
LINUXBIOS=../../
|
|
CFLAGS += -O2 -g
|
|
LDFLAGS += -g
|
|
INCLUDE=
|
|
|
|
spd_82801: spd_82801.o pcibios.o
|
|
|
|
spd_82801.o: spd_82801.c
|
|
cc -g -I. -O2 -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.o spd_82801
|