Skip to content

Instantly share code, notes, and snippets.

@orleika
Created April 25, 2018 06:31
Show Gist options
  • Save orleika/592ad1a4c0d6180397d1f2ea0f0f6842 to your computer and use it in GitHub Desktop.
Save orleika/592ad1a4c0d6180397d1f2ea0f0f6842 to your computer and use it in GitHub Desktop.
some description
all: clean receiver sender
receiver:
clang -Os -o receiver receiver.c
strip --strip-all receiver
gzip -c receiver | base64 > receiver.dump
sender:
clang -Os -o sender sender.c
strip --strip-all sender
gzip -c sender | base64 > sender.dump
.PHONY: clean
clean:
rm -rf receiver receiver.dump sender sender.dump
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment