root/democlient/Makefile

Revision 31ce2cb0f34aebfcdd50b5602a150e4ea0c03dd3, 244 bytes (checked in by D.J. Capelis <dev@…>, 2 years ago)

Work done on the epoll() -> kqueue() compatibility layer. Parts of it
are working, but democlient still experiences failures.

  • Property mode set to 100644
Line 
1CC=gcc
2CFLAGS=-g -O0 -Wall -Wextra -I../
3LDFLAGS=-lssl
4SRCS=main.c ../compat/epoll.c
5OBJS=main.o ../compat/epoll.o
6
7all: demo
8
9$(SRCS):
10        $(CC) $(CFLAGS) -c $*.c
11
12demo: $(OBJS)
13        $(CC) $(LDFLAGS) -o $@ $(OBJS)
14
15install:
16
17clean:
18        rm -f *.o demo
Note: See TracBrowser for help on using the browser.