mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
632f538558
New features include 'save to disk' in both ascii and html formats. alevt-date is fixed too, so you cn set your system clock from teletext
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
*** Makefile.orig Fri Oct 8 22:49:26 1999
|
|
--- Makefile Tue Oct 12 10:54:23 1999
|
|
*************** VER=1.5.0
|
|
*** 2,8 ****
|
|
OPT=-O2 -s
|
|
DEFS=-DWITH_PNG
|
|
|
|
! CFLAGS=$(OPT) -DVERSION=\"$(VER)\" $(DEFS) -I/usr/X11R6/include -W
|
|
|
|
EXPOBJS=export.o exp-txt.o exp-html.o exp-gfx.o font.o
|
|
OBJS=main.o ui.o xio.o fdset.o vbi.o cache.o help.o edline.o search.o edit.o misc.o hamm.o lang.o $(EXPOBJS)
|
|
--- 2,8 ----
|
|
OPT=-O2 -s
|
|
DEFS=-DWITH_PNG
|
|
|
|
! CFLAGS=$(OPT) -DVERSION=\"$(VER)\" $(DEFS) -I/usr/X11R6/include -I/usr/local/include -W
|
|
|
|
EXPOBJS=export.o exp-txt.o exp-html.o exp-gfx.o font.o
|
|
OBJS=main.o ui.o xio.o fdset.o vbi.o cache.o help.o edline.o search.o edit.o misc.o hamm.o lang.o $(EXPOBJS)
|
|
*************** TOBJS=alevt-date.o vbi.o fdset.o misc.o
|
|
*** 10,16 ****
|
|
COBJS=alevt-cap.o vbi.o fdset.o misc.o hamm.o lang.o $(EXPOBJS)
|
|
|
|
ifneq ($(findstring WITH_PNG,$(DEFS)),)
|
|
! EXPLIBS=-lpng -lz -lm
|
|
endif
|
|
|
|
all: alevt alevt-date alevt-cap alevt.1x alevt-date.1 alevt-cap.1
|
|
--- 10,16 ----
|
|
COBJS=alevt-cap.o vbi.o fdset.o misc.o hamm.o lang.o $(EXPOBJS)
|
|
|
|
ifneq ($(findstring WITH_PNG,$(DEFS)),)
|
|
! EXPLIBS=-L/usr/local/lib -lpng -lz -lm
|
|
endif
|
|
|
|
all: alevt alevt-date alevt-cap alevt.1x alevt-date.1 alevt-cap.1
|
|
*************** rpm-install: all
|
|
*** 65,77 ****
|
|
# anything below this line is just for me!
|
|
|
|
install: all
|
|
! cp alevt /usr/local/bin
|
|
! cp alevt-date /usr/local/bin
|
|
! cp alevt-cap /usr/local/bin
|
|
! cp alevt.1x /usr/local/man/man1
|
|
! cp alevt-date.1 /usr/local/man/man1
|
|
! cp alevt-cap.1 /usr/local/man/man1
|
|
! cp contrib/mini-alevt.xpm /usr/include/X11/pixmaps
|
|
sync
|
|
|
|
depend:
|
|
--- 65,77 ----
|
|
# anything below this line is just for me!
|
|
|
|
install: all
|
|
! cp alevt $(X11BASE)/bin
|
|
! cp alevt-date $(X11BASE)/bin
|
|
! cp alevt-cap $(X11BASE)/bin
|
|
! cp alevt.1x $(X11BASE)/man/man1
|
|
! cp alevt-date.1 $(X11BASE)/man/man1
|
|
! cp alevt-cap.1 $(X11BASE)/man/man1
|
|
! cp contrib/mini-alevt.xpm $(X11BASE)/include/X11/pixmaps
|
|
sync
|
|
|
|
depend:
|