Skip to content

Instantly share code, notes, and snippets.

View ptsneves's full-sized avatar

Paulo Neves ptsneves

View GitHub Profile
@ptsneves
ptsneves / Makefile
Last active August 12, 2016 19:08
ubirch GmbH Assignment
.DEFAULT_GOAL:=bmp180
CC:=arm-none-eabi-gcc
CFLAGS=-I.
CPPFLAGS:=-c -Wall -g3 -fstack-check -ftrack-macro-expansion=0 \
-fno-diagnostics-show-caret
DEPS:= bmp180Driver.h bmp180Simulator.h
OBJ_DRIVER:= bmp180Driver.o
OBJ_TEST:= $(OBJ_DRIVER) main.o bmp180Simulator.o