summaryrefslogtreecommitdiff
path: root/userland/pcm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'userland/pcm/Makefile')
-rw-r--r--userland/pcm/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/userland/pcm/Makefile b/userland/pcm/Makefile
new file mode 100644
index 0000000..7a558a3
--- /dev/null
+++ b/userland/pcm/Makefile
@@ -0,0 +1,15 @@
+CC="i686-sb-gcc"
+CFLAGS=-ggdb -O0 -Wall -Wextra -pedantic
+LDFLAGS=
+BIN=pcm
+OBJ=pcm.o
+all: $(BIN)
+
+%.o: %.c
+ $(CC) $(CFLAGS) -o $@ -c $<
+
+$(BIN): $(OBJ)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
+
+clean:
+ rm $(BIN) $(OBJ)