diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-14 01:07:06 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-14 01:07:06 +0100 |
commit | d45fbd7b57db7aaad55bdac0a28b47cec33d3c86 (patch) | |
tree | 7c47bb6ba68402c2278d5b51472d1935a84edc6c /src/arch/x86/seg/Makefile | |
parent | b534253a32b89136b486fbe1b15f645f549b89df (diff) | |
download | notes-d45fbd7b57db7aaad55bdac0a28b47cec33d3c86.tar.gz notes-d45fbd7b57db7aaad55bdac0a28b47cec33d3c86.zip |
x86: gs user-space example
Diffstat (limited to 'src/arch/x86/seg/Makefile')
-rw-r--r-- | src/arch/x86/seg/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/x86/seg/Makefile b/src/arch/x86/seg/Makefile new file mode 100644 index 0000000..290025e --- /dev/null +++ b/src/arch/x86/seg/Makefile @@ -0,0 +1,5 @@ +a.out: seg.c + gcc -g seg.c + +clean: + $(RM) a.out |