mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-26 17:57:16 +00:00
13 lines
270 B
Makefile
13 lines
270 B
Makefile
CC=gcc -g -m32
|
|
INCLUDES=-I. -I../include -I../include/x86
|
|
TARGETS=cbfs-x86-test
|
|
|
|
cbfs-x86-test: cbfs-x86-test.c ../arch/x86/rom_media.c ../libcbfs/ram_media.c ../libcbfs/cbfs.c
|
|
$(CC) -o $@ $^ $(INCLUDES)
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
run: all
|
|
for i in $(TARGETS); do ./$$i; done
|