1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-03 22:23:24 +00:00
freebsd-ports/print/asprint/files/patch-aa
Thomas Gellekum e357486dc7 Import of asprint port. asprint is a simple browser designed
to work with AfterStep that allows a user to select files
to print.

PR:		4331
Submitted by:	Brett Taylor <brett@peloton.physics.montana.edu>
1997-11-04 13:42:42 +00:00

38 lines
687 B
Plaintext

*** makefile Fri Mar 14 03:34:48 1997
--- makefile Sat Aug 16 18:23:57 1997
***************
*** 2,18 ****
CFLAGS = -O2
CC = gcc
! XLIB = -L/usr/X11/lib -lXaw3d -lXmu -lXt
!
OBJS = asprint.o
! INCS =
!
! default : asprint ./makefile
! clean:
! rm -f $(OBJS) *~ asprint core
asprint: $(OBJS)
$(CC) -o asprint $(CFLAGS) $(OBJS) $(XLIB)
.c.o:
! $(CC) $(CFLAGS) -c $<
--- 2,16 ----
CFLAGS = -O2
CC = gcc
! XLIB = -L/usr/X11R6/lib -lXaw -lXmu -lXt
OBJS = asprint.o
! INCS = -I/usr/X11R6/include
asprint: $(OBJS)
$(CC) -o asprint $(CFLAGS) $(OBJS) $(XLIB)
+ clean:
+ rm -f $(OBJS) *~ asprint core
+
.c.o:
! $(CC) $(CFLAGS) -c $(INCS) $<