summaryrefslogtreecommitdiff
path: root/tmp/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-11-07 22:19:48 +0000
committerPaul Buetow <paul@buetow.org>2008-11-07 22:19:48 +0000
commitc33e87f7b07553e999db94ca0ac6529ed1816332 (patch)
tree0b4ca663999e625d7ea26db9dca9aced90c7eca5 /tmp/Makefile
parenta46655f67043af257e70715903badf9d4321c4de (diff)
renamed stuff
Diffstat (limited to 'tmp/Makefile')
-rw-r--r--tmp/Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/tmp/Makefile b/tmp/Makefile
deleted file mode 100644
index eece6e4..0000000
--- a/tmp/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-all:
- cd ../ && yasm -f elf ./tmp/test2.s -o ./tmp/test2.o && \
- cc -lc ./tmp/test2.o -o ./tmp/test2
-run: all
- ./test2
-clean:
- for i in test2.o test2; do \
- if [ -f $$i ]; then rm $$i; fi; \
- done
-