Skip to content

Instantly share code, notes, and snippets.

View daoshuti's full-sized avatar

王涵 daoshuti

View GitHub Profile
@daoshuti
daoshuti / makefile
Created July 7, 2017 08:42 — forked from samvasko/makefile
Makefile for building keil projects
# Makefile for building keil projects
KEIL=wine "/home/bliker/.wine/drive_c/Keil/UV4/UV4.exe"
TMP=/tmp/keil.out
NULL=/dev/null
# Will prevent it from exiting even when somehing failied
build:
-@$(KEIL) -j0 -b -o $(TMP) *.uvproj 2> $(NULL);
@cat $(TMP)