From d7880040747d80bf6d14e9885c94718ac8eb4110 Mon Sep 17 00:00:00 2001 From: CSRG Date: Mon, 1 Dec 1986 00:51:15 -0800 Subject: [PATCH] BSD 4_3_Tahoe development Work on file usr/src/new/X/bitmap/Makefile Synthesized-from: CSRG/cd2/4.3tahoe --- usr/src/new/X/bitmap/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 usr/src/new/X/bitmap/Makefile diff --git a/usr/src/new/X/bitmap/Makefile b/usr/src/new/X/bitmap/Makefile new file mode 100644 index 0000000000..10cced2e22 --- /dev/null +++ b/usr/src/new/X/bitmap/Makefile @@ -0,0 +1,27 @@ +# Copyright 1985, Massachusetts Institute of Technology +# bitmap - makefile for bitmap + +DESTDIR = +CONFDIR = /usr/new +INCLUDES = -I../include + +CFLAGS = -O ${INCLUDES} +XLIB = ../Xlib/libX.a +SRCS = bitmap.c dialog.c +OBJS = bitmap.o dialog.o +PROGRAM = bitmap + +all: bitmap + +clean: + rm -f ${PROGRAM} *.bak *.o core errs \#* *~ + +install: all + install bitmap ${DESTDIR}${CONFDIR} + +bitmap: $(OBJS) $(XLIB) + cc $(CFLAGS) $(OBJS) -o $(PROGRAM) $(XLIB) -lm + +bitmap.o: ../Xlib/Xlib.h +dialog.o: ../Xlib/Xlib.h + -- 2.20.1