diff options
author | Patrick Lu <patrick.lu@intel.com> | 2017-12-18 06:40:58 -0700 |
---|---|---|
committer | Patrick Lu <patrick.lu@intel.com> | 2017-12-18 06:43:41 -0700 |
commit | 831d6f8a0233c819f8374f9ba6b4941ec3922e73 (patch) | |
tree | b900592398494b727686a3c8c1a1a49ed0b12d31 /jitter/Makefile | |
parent | 5836557c254aadfe05d8800fe565ad3cc61ce44d (diff) |
Initial release of jitter micro
Change-Id: I69bc52ddafe2be1f549f0652ab24fb316ee159c5
Signed-off-by: Patrick Lu <patrick.lu@intel.com>
Diffstat (limited to 'jitter/Makefile')
-rw-r--r-- | jitter/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/jitter/Makefile b/jitter/Makefile new file mode 100644 index 0000000..547d57f --- /dev/null +++ b/jitter/Makefile @@ -0,0 +1,19 @@ +# Copyright (c) 2017 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +all: + gcc -O1 jitter.c -fstack-protector-all -fPIC -Wformat -Wformat-security -Wl,-z,noexecstack,-z,relro,-z,now -o jitter + +clean: + rm -f jitter |