dockapps/wmkeys-0.1/Makefile
Carlos R. Mafra 21625f40b5 Initial dockapps git repo
I tried to get the latest versions from dockapps.org, but I haven't
tested any of them.

More dockapps will be added as time permits.
2011-03-25 19:45:13 +01:00

19 lines
292 B
Makefile

LIBDIR = -L/usr/X11R6/lib
LIBS = -lXpm -lXext -lX11 -lm
OBJS = wmkeys.o \
wmgeneral/wmgeneral.o \
wmgeneral/misc.o \
wmgeneral/list.o
.c.o:
cc -c -O2 -Wall $< -o $*.o
wmkeys: $(OBJS)
cc -o wmkeys $^ $(LIBDIR) $(LIBS)
clean::
for i in $(OBJS) ; do \
rm $$i; \
done
rm wmkeys