dockapps/wmifinfo/Makefile
Doug Torrance 6905ad773e wmifinfo: Update Makefile.
In particular, add support for common user-defined variables CFLAGS,
CPPFLAGS, LDFLAGS, DESTDIR, and PREFIX.  Also remove reference to
deprecated X11R6 directory and use install instead of cp for install
target.

Inspired by the Debian patches:
http://sources.debian.net/src/wmifinfo/0.09-7/debian/patches/makefile_add_ldflags.patch/
http://sources.debian.net/src/wmifinfo/0.09-7/debian/patches/makefile_patch.patch/
2014-12-09 11:17:56 +00:00

51 lines
1,017 B
Makefile

# Set this to 'y' if you want support for reading the link quality
# of nowiresneeded 1148 PCMCIA or Swallow cards
ENABLE_NWN_SUPPORT=n
##################################################################
# Nothing to configure under here
NAME=wmifinfo
VERSION=0.09
CC = gcc
LD = gcc
INSTALL = install
CFLAGS = -Wall -O2
COPTS = -D'VERSION="$(VERSION)"' -D'NAME="$(NAME)"'
LDOPTS = -lX11 -lXpm -lXext
PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
BIN = wmifinfo
FILES = wmifinfo.o xutils.o
ifeq ("$(ENABLE_NWN_SUPPORT)", "y")
FILES += nwn.o
COPTS += -DENABLE_NWN_SUPPORT
endif
all: $(BIN)
.c.o:
$(CC) $(COPTS) $(CPPFLAGS) $(CFLAGS) -c $<
$(BIN): $(FILES)
$(LD) $(LDFLAGS) -o $@ $(FILES) $(LDOPTS)
clean:
rm -f *.o $(BIN) core ./.#* *.orig *.rej
install:
$(INSTALL) -d $(DESTDIR)$(BINDIR)
$(INSTALL) $(BIN) $(DESTDIR)$(BINDIR)
dist: clean
rm -rf /tmp/wmifinfo-$(VERSION)
cd .. && cp -a wmifinfo /tmp/wmifinfo-$(VERSION)
cd /tmp && tar --exclude CVS -zcvf wmifinfo-$(VERSION).tgz wmifinfo-$(VERSION)/