diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-08-04 13:22:16 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-08-04 13:22:16 +0200 |
commit | b81b2b920d300f1cb292fecf96e9d590497607f8 (patch) | |
tree | dabd9f0256e0775bbd7344d3997f917f97bc5e3c /subs/Makefile | |
parent | e9aa72aef50d72b8bb358cd5ef126d3ce9c64635 (diff) | |
download | mkinitcpio-b81b2b920d300f1cb292fecf96e9d590497607f8.tar.gz mkinitcpio-b81b2b920d300f1cb292fecf96e9d590497607f8.tar.xz |
Solved IFS issues
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@139 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'subs/Makefile')
-rw-r--r-- | subs/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/subs/Makefile b/subs/Makefile new file mode 100644 index 0000000..e3ae446 --- /dev/null +++ b/subs/Makefile @@ -0,0 +1,11 @@ +CC = klcc +CFLAGS = -Wall +TARGET = subs + +all: $(TARGET) + +$(TARGET): $(TARGET).c + $(CC) $(CFLAGS) $(TARGET).c -o $(TARGET) + +clean: + rm -f $(TARGET) |