Add instructions for building the RaspberryPi loader. This is still untested.
This commit is contained in:
parent
d5b5b31e98
commit
dff1df30bc
18
Makefile
18
Makefile
@ -3,6 +3,10 @@ RM=rm
|
||||
CC=cc
|
||||
ECHO=echo
|
||||
|
||||
OBJS=\
|
||||
$(OBJDIR)/p1load.o \
|
||||
$(OBJDIR)/ploader.o
|
||||
|
||||
OS?=macosx
|
||||
|
||||
ifeq ($(OS),linux)
|
||||
@ -12,6 +16,15 @@ OSINT=osint_linux
|
||||
LIBS=
|
||||
endif
|
||||
|
||||
ifeq ($(OS),raspberrypi)
|
||||
OS=linux
|
||||
CFLAGS+=-DLINUX -DRASPBERRY_PI
|
||||
EXT=
|
||||
OSINT=osint_linux
|
||||
LIBS=
|
||||
OBJS+=$(OBJDIR)/gpio_sysfs.o
|
||||
endif
|
||||
|
||||
ifeq ($(OS),msys)
|
||||
CFLAGS += -DMINGW
|
||||
EXT=.exe
|
||||
@ -39,10 +52,7 @@ TARGET=$(BINDIR)/p1load$(EXT)
|
||||
HDRS=\
|
||||
ploader.h
|
||||
|
||||
OBJS=\
|
||||
$(OBJDIR)/p1load.o \
|
||||
$(OBJDIR)/ploader.o \
|
||||
$(foreach x, $(OSINT), $(OBJDIR)/$(x).o)
|
||||
OBJS+=$(foreach x, $(OSINT), $(OBJDIR)/$(x).o)
|
||||
|
||||
CFLAGS+=-Wall -DOS_$(OS)
|
||||
LDFLAGS=$(CFLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user