From b81b2b920d300f1cb292fecf96e9d590497607f8 Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Fri, 4 Aug 2006 11:22:16 +0000 Subject: Solved IFS issues git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@139 880c04e9-e011-0410-abf7-b926e227c9cd --- subs/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 subs/Makefile (limited to 'subs/Makefile') 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) -- cgit v1.2.3-24-g4f1b