diff options
author | landley <landley@driftwood> | 2006-09-28 17:18:51 -0400 |
---|---|---|
committer | landley <landley@driftwood> | 2006-09-28 17:18:51 -0400 |
commit | c56215062c961402515daeef8330ed75cd94af29 (patch) | |
tree | 7d29fd9f966e8392c180ec7a918d52b5ffb6a299 /Makefile | |
parent | 13bab2f09e9189c2b1e83ae37a1134108f9479cf (diff) | |
download | toybox-c56215062c961402515daeef8330ed75cd94af29.tar.gz |
Next snapshot. Tries to grab something out of lib in order to build, I have
an empty "blah.c" in there to make it happy but I'm not checking that in.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..984cdeb0 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: + gcc -Os -s $(CFLAGS) -I . main.c toys/*.c lib/*.c -o toybox + +clean: + rm toybox |