diff options
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 |