2015-06-14 22:04:34 +00:00
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -O2 -Wall
|
wmsun: Update Makefile.
In particular,
- Remove INCDIR, DESTDIR, and LIBDIR definitions.
- Add PREFIX, BINDIR, MANDIR, and INSTALL definitions.
- Add -lm to LIBS.
- Drop COPTS, uname, and INCDIR and add CPPFLAGS and CFLAGS when compiling.
- Drop COPTS, SYSTEM, INCDIR, and LIBDIR and add LDFLAGS when linking.
- Use INSTALL when installing, create installation directories, use new
BINDIR and MANDIR directories.
2015-06-14 22:04:37 +00:00
|
|
|
PREFIX = /usr/local
|
|
|
|
BINDIR = $(PREFIX)/bin
|
|
|
|
MANDIR = $(PREFIX)/share/man/man1
|
|
|
|
INSTALL = install
|
2015-06-14 22:04:34 +00:00
|
|
|
|
|
|
|
# If you need to compile on a Linux, dont change anything. If
|
|
|
|
# compiling for Solaris, swap the LIBS below...
|
|
|
|
#
|
|
|
|
# For Linux (and other?) Machines...
|
|
|
|
#
|
wmsun: Update Makefile.
In particular,
- Remove INCDIR, DESTDIR, and LIBDIR definitions.
- Add PREFIX, BINDIR, MANDIR, and INSTALL definitions.
- Add -lm to LIBS.
- Drop COPTS, uname, and INCDIR and add CPPFLAGS and CFLAGS when compiling.
- Drop COPTS, SYSTEM, INCDIR, and LIBDIR and add LDFLAGS when linking.
- Use INSTALL when installing, create installation directories, use new
BINDIR and MANDIR directories.
2015-06-14 22:04:37 +00:00
|
|
|
LIBS = -lXpm -lX11 -lXext -lm
|
2015-06-14 22:04:34 +00:00
|
|
|
#
|
|
|
|
# For Sun Solaris Machines (I know it compiles on 2.6)...
|
|
|
|
#
|
|
|
|
# LIBS = -lXpm -lX11 -lXext -lsocket
|
|
|
|
|
2015-06-14 22:04:36 +00:00
|
|
|
OBJS = wmSun.o SunRise.o wmgeneral/wmgeneral.o
|
2015-06-14 22:04:34 +00:00
|
|
|
|
|
|
|
.c.o:
|
wmsun: Update Makefile.
In particular,
- Remove INCDIR, DESTDIR, and LIBDIR definitions.
- Add PREFIX, BINDIR, MANDIR, and INSTALL definitions.
- Add -lm to LIBS.
- Drop COPTS, uname, and INCDIR and add CPPFLAGS and CFLAGS when compiling.
- Drop COPTS, SYSTEM, INCDIR, and LIBDIR and add LDFLAGS when linking.
- Use INSTALL when installing, create installation directories, use new
BINDIR and MANDIR directories.
2015-06-14 22:04:37 +00:00
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o
|
2015-06-14 22:04:34 +00:00
|
|
|
|
|
|
|
all: wmSun.o wmSun
|
|
|
|
|
wmsun: Update Makefile.
In particular,
- Remove INCDIR, DESTDIR, and LIBDIR definitions.
- Add PREFIX, BINDIR, MANDIR, and INSTALL definitions.
- Add -lm to LIBS.
- Drop COPTS, uname, and INCDIR and add CPPFLAGS and CFLAGS when compiling.
- Drop COPTS, SYSTEM, INCDIR, and LIBDIR and add LDFLAGS when linking.
- Use INSTALL when installing, create installation directories, use new
BINDIR and MANDIR directories.
2015-06-14 22:04:37 +00:00
|
|
|
wmSun.o: wmSun_master.xpm wmSun_mask.xbm
|
|
|
|
|
|
|
|
wmSun: $(OBJS)
|
|
|
|
$(CC) $(LDFLAGS) -o wmSun $^ $(LIBS)
|
2015-06-14 22:04:34 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
for i in $(OBJS) ; do \
|
|
|
|
rm -f $$i; \
|
|
|
|
done
|
|
|
|
rm -f wmSun
|
|
|
|
|
|
|
|
install:: wmSun
|
wmsun: Update Makefile.
In particular,
- Remove INCDIR, DESTDIR, and LIBDIR definitions.
- Add PREFIX, BINDIR, MANDIR, and INSTALL definitions.
- Add -lm to LIBS.
- Drop COPTS, uname, and INCDIR and add CPPFLAGS and CFLAGS when compiling.
- Drop COPTS, SYSTEM, INCDIR, and LIBDIR and add LDFLAGS when linking.
- Use INSTALL when installing, create installation directories, use new
BINDIR and MANDIR directories.
2015-06-14 22:04:37 +00:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(BINDIR)
|
|
|
|
$(INSTALL) wmSun $(DESTDIR)$(BINDIR)
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(MANDIR)
|
|
|
|
$(INSTALL) -m 644 wmSun.1 $(DESTDIR)$(MANDIR)
|