Init repo

This commit is contained in:
Votre Nom 2017-08-30 10:48:11 +04:00
commit f37f200792
31 changed files with 1341 additions and 0 deletions

18
GEOLOC/app/Makefile Normal file
View 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