diff options
author | Russ Cox <rsc@swtch.com> | 2008-01-30 10:29:17 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-01-30 10:29:17 -0500 |
commit | 0206bd5113e727870d4eb24fbd5f17843745237d (patch) | |
tree | 584bad99ee188d7582a5732d7ee106c022c9775f /src/cmd/rio/showevent/Makefile | |
parent | 52abe8e13010b21ae13d05f1428caca05aa24bdf (diff) | |
download | plan9port-0206bd5113e727870d4eb24fbd5f17843745237d.tar.gz plan9port-0206bd5113e727870d4eb24fbd5f17843745237d.tar.bz2 plan9port-0206bd5113e727870d4eb24fbd5f17843745237d.zip |
rio: make full-screen work properly; add showevent
Diffstat (limited to 'src/cmd/rio/showevent/Makefile')
-rw-r--r-- | src/cmd/rio/showevent/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cmd/rio/showevent/Makefile b/src/cmd/rio/showevent/Makefile new file mode 100644 index 00000000..9e70f565 --- /dev/null +++ b/src/cmd/rio/showevent/Makefile @@ -0,0 +1,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 |