summaryrefslogtreecommitdiff
path: root/obcl/Makefile
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-24 07:29:40 +0000
committerDana Jansens <danakj@orodu.net>2003-05-24 07:29:40 +0000
commitd61b48a2ef2c315818a322ae84385228f4438dd3 (patch)
tree3821969a827f1e323500993036e427f361e308ae /obcl/Makefile
parentb1fe0dbbc2ef4472ac8893d9b3b20e9cb149af6d (diff)
remove obcl. shrimpx may work on this in the future but we are not usnig it now.
Diffstat (limited to 'obcl/Makefile')
-rw-r--r--obcl/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/obcl/Makefile b/obcl/Makefile
deleted file mode 100644
index 1284a735..00000000
--- a/obcl/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-CFLAGS=-ansi -pedantic -Wall `pkg-config --cflags glib-2.0`
-LIBS=`pkg-config --libs glib-2.0` -ll
-
-targets = cltest
-
-sources = obcl.c main.c parse.c lex.c process.c
-headers = obcl.h
-
-.PHONY: all clean
-
-all: $(targets)
-
-$(targets): $(sources:.c=.o)
- $(CC) -o $@ $^ $(LIBS)
-
-parse.c: parse.y
- $(YACC) -d -o$@ $^
-
-lex.c: lex.l
- $(LEX) -o$@ $^
-
-clean:
- $(RM) $(targets) *.o core *~ lex.c parse.c parse.h