Skip to content

Instantly share code, notes, and snippets.

@daoshuti
Forked from samvasko/makefile
Created July 7, 2017 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save daoshuti/b8d8eb70191e606c230a07ccb62f3e18 to your computer and use it in GitHub Desktop.
Save daoshuti/b8d8eb70191e606c230a07ccb62f3e18 to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment