BSD 4_3_Tahoe development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 1 Dec 1986 08:51:15 +0000 (00:51 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 1 Dec 1986 08:51:15 +0000 (00:51 -0800)
Work on file usr/src/new/X/bitmap/Makefile

Synthesized-from: CSRG/cd2/4.3tahoe

usr/src/new/X/bitmap/Makefile [new file with mode: 0644]

diff --git a/usr/src/new/X/bitmap/Makefile b/usr/src/new/X/bitmap/Makefile
new file mode 100644 (file)
index 0000000..10cced2
--- /dev/null
@@ -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
+