diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2013-04-11 23:29:03 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2013-04-11 23:29:03 -0700 |
commit | 8a7677787479ad6d8aede4826987afa42bd1f122 (patch) | |
tree | efc9208a53be28a7c86afac0d0085385130ba524 /Makefile | |
parent | 09918cfe4f1f75bef96d5179e37d88f247baf781 (diff) | |
download | insecuresuexec-8a7677787479ad6d8aede4826987afa42bd1f122.tar.gz insecuresuexec-8a7677787479ad6d8aede4826987afa42bd1f122.zip |
Adding support for overriding target uid+gid based on command to execute.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ default: insecuresuexec insecuresuexec-noisy insecuresuexec: main.cc - clang++ -Wall -Werror -std=c++11 -Os -o $@ $+ + g++ -Wall -Werror -std=c++11 -Os -o $@ $+ insecuresuexec-noisy: main.cc - clang++ -Wall -Werror -std=c++11 -Os -o $@ -DNOISY $+ + g++ -Wall -Werror -std=c++11 -Os -o $@ -DNOISY $+ clean: rm -f insecuresuexec insecuresuexec-noisy |