Init repo
This commit is contained in:
commit
f37f200792
31 changed files with 1341 additions and 0 deletions
18
GEOLOC/app/Makefile
Normal file
18
GEOLOC/app/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
all: app.o
|
||||
|
||||
app.o:
|
||||
ifeq ($(TARGET),ANCHOR)
|
||||
$(MAKE) -C ./anchor
|
||||
cp anchor/app.o ./
|
||||
else
|
||||
$(CC) -c ./mobile/app.c -o ./app.o
|
||||
endif
|
||||
$(CC) -c frame.c -o frame.o
|
||||
ld -r app.o frame.o -o app_tmp.o
|
||||
mv app_tmp.o $@
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
-rm ./app.o ./frame.o
|
Loading…
Add table
Add a link
Reference in a new issue