dockapps/wmtunlo/Makefile
Doug Torrance 69923dff37 wmtunlo: Add version 0.1.3 to repository.
From
http://www.gnu-darwin.org/distfiles/wmtunlo-0.1.3.tar.gz
(Note that this is not really gzipped; used "tar -xvf".)
2016-12-27 20:56:41 +00:00

24 lines
437 B
Makefile

CFLAGS = -Wall -Os
INCS = -I/usr/X11R6/include/X11
LIBS = -L/usr/X11R6/lib -lXpm -lX11 -lXext -lm
INSTALL_PREFIX = /usr/local
wmtunlo: docklib.o wmtunlo.c mask.h master.h
gcc $(CFLAGS) $(INCS) docklib.o wmtunlo.c -o wmtunlo $(LIBS)
docklib.o: docklib.c docklib.h
gcc $(CFLAGS) $(INCS) -c docklib.c
install:
cp ./wmtunlo $(INSTALL_PREFIX)/bin
uninstall:
rm -f $(INSTALL_PREFIX)/bin/wmtunlo
clean:
rm -f *~ *.o wmtunlo