all repos — ryudo @ dd9e049a8c5e04e94fa53120ae04f37bffd5e9e4

the floatiling window manager that flows; fork of rio from plan9port

showevent/Makefile (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -g 
INCLUDE = -I/global/include
LFLAGS = -L/global/lib
OBJS =	ShowEvent.o sample.o
LIBS = -lX11

all: sample

.c.o:
	$(CC) $(INCLUDE) $(CFLAGS) -c $<

sample: $(OBJS)
	$(CC) $(LFLAGS) $(OBJS) $(LIBS) -o sample