Skip to content

Instantly share code, notes, and snippets.

@flashvoid
Created August 14, 2015 00:34
Show Gist options
  • Save flashvoid/edddc3b9514242f1f756 to your computer and use it in GitHub Desktop.
Save flashvoid/edddc3b9514242f1f756 to your computer and use it in GitHub Desktop.
void@tahr:/tmp/tmp.6ZYoSGn0V1$ cat Makefile
a := foo
b := bar
var := $(sort $(a) $(b))
all:
echo $(var)
void@tahr:/tmp/tmp.6ZYoSGn0V1$ make
echo bar foo
bar foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment