Skip to content

Instantly share code, notes, and snippets.

View ptsneves's full-sized avatar

Paulo Neves ptsneves

View GitHub Profile
@ptsneves
ptsneves / Find FIles in List of tars
Created December 15, 2016 09:33
Find file in lis of tars
(for f in `find $tar_dir -name '$tar_files*tar.gz'`; do (echo FILE $f && tar tvf $f ) ; done)|less
@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