Fix dependecies and building for APP=loadable
This commit is contained in:
parent
6a8da54274
commit
18dc47fa2b
|
@ -21,13 +21,6 @@ endif
|
||||||
OBJS += $(ME_OBJ).o
|
OBJS += $(ME_OBJ).o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq "$(APP)" "loadable"
|
|
||||||
ifndef LAPP
|
|
||||||
LAPP=blinktest
|
|
||||||
endif
|
|
||||||
OBJS += ../loadable/$(LAPP).o
|
|
||||||
endif
|
|
||||||
|
|
||||||
WRAP=wrapper
|
WRAP=wrapper
|
||||||
LIBNAME=app
|
LIBNAME=app
|
||||||
|
|
||||||
|
@ -49,6 +42,22 @@ LIBFILE=lib$(LIBNAME).a
|
||||||
|
|
||||||
all: $(LIBFILE)
|
all: $(LIBFILE)
|
||||||
|
|
||||||
|
ifeq "$(APP)" "loadable"
|
||||||
|
ifndef LAPP
|
||||||
|
LAPP=blinktest
|
||||||
|
endif
|
||||||
|
LSRC=../loadable/$(LAPP).c
|
||||||
|
LOBJ=loadable_$(LAPP).o
|
||||||
|
|
||||||
|
.PHONY: $(LOBJ)
|
||||||
|
|
||||||
|
$(LOBJ):
|
||||||
|
$(CC) $(CFLAGS) -o $@ $(LSRC)
|
||||||
|
$(RM) $(LIBFILE)
|
||||||
|
|
||||||
|
OBJS += $(LOBJ)
|
||||||
|
endif
|
||||||
|
|
||||||
$(LIBFILE): $(OBJS) $(WRAPOBJ)
|
$(LIBFILE): $(OBJS) $(WRAPOBJ)
|
||||||
$(AR) rcs $@ $(OBJS) $(WRAPOBJ)
|
$(AR) rcs $@ $(OBJS) $(WRAPOBJ)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
for a in $* ; do
|
for a in $* ; do
|
||||||
case $a in
|
case $a in
|
||||||
*/*) continue;;
|
loadable_*) continue;;
|
||||||
esac
|
esac
|
||||||
base=${a%.o}
|
base=${a%.o}
|
||||||
echo "void main_$base(void);"
|
echo "void main_$base(void);"
|
||||||
|
@ -14,7 +14,7 @@ echo "void wrapper(void){"
|
||||||
|
|
||||||
for a in $* ; do
|
for a in $* ; do
|
||||||
case $a in
|
case $a in
|
||||||
*/*) continue;;
|
loadable_*) continue;;
|
||||||
esac
|
esac
|
||||||
base=${a%.o}
|
base=${a%.o}
|
||||||
echo "main_$base();"
|
echo "main_$base();"
|
||||||
|
@ -25,6 +25,9 @@ echo "}"
|
||||||
echo "void tick_wrapper(void){"
|
echo "void tick_wrapper(void){"
|
||||||
|
|
||||||
for a in $* ; do
|
for a in $* ; do
|
||||||
|
case $a in
|
||||||
|
loadable_*) continue;;
|
||||||
|
esac
|
||||||
base=${a%.o}
|
base=${a%.o}
|
||||||
grep -q \ tick_$base ${base}.c && echo "tick_$base();"
|
grep -q \ tick_$base ${base}.c && echo "tick_$base();"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue