wmfemon: Fix linking order to avoid undefined reference errors.

This commit is contained in:
Doug Torrance 2017-02-24 00:21:40 -05:00 committed by Carlos R. Mafra
parent 8b09e991af
commit 3f39807282

View file

@ -2,7 +2,8 @@ CC = gcc
#OPT = -pg -g -DPRO #OPT = -pg -g -DPRO
OPT = -O3 -fomit-frame-pointer OPT = -O3 -fomit-frame-pointer
CFLAGS = $(OPT) -Wall -I/usr/X11R6/include CFLAGS = $(OPT) -Wall -I/usr/X11R6/include
LDFLAGS = $(OPT) -L/usr/X11R6/lib -lX11 -lXpm -lXext LDFLAGS = $(OPT) -L/usr/X11R6/lib
LDLIBS = -lX11 -lXpm -lXext
SRCS = wmfemon.c SRCS = wmfemon.c
OBJS = wmfemon.o OBJS = wmfemon.o