summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index c4e6a73..0000000
--- a/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-XTINC =
-CC=gcc
-OBJ = timer.o socket.o bus.o
-GOBJ = timer.o socket.o gbus.o
-XTOBJ = timer.o xtsocket.o bus.o
-
-all: libbus.a libgbus.a libxtbus.a testbus
-
-gbus.o: bus.c
- $(CC) -DGNU_REGEXP -c $(CFLAGS) -o gbus.o bus.c
-
-xtsocket.o: socket.c
- $(CC) -DXTMAINLOOP $(XTINC) -c $(CFLAGS) -o xtsocket.o socket.c
-
-testbus: testbus.o $(OBJ)
- $(CC) -o testbus testbus.o $(OBJ)
-
-libbus.a: $(OBJ)
- ar q libbus.a $(OBJ)
-
-libgbus.a: $(GOBJ)
- ar q libgbus.a $(GOBJ)
-
-libxtbus.a: $(XTOBJ)
- ar q libxtbus.a $(XTOBJ)
-
-