BSD 4_3_Tahoe development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 1 Dec 1986 09:42:03 +0000 (01:42 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 1 Dec 1986 09:42:03 +0000 (01:42 -0800)
Work on file usr/src/new/X/xclock/Makefile

Synthesized-from: CSRG/cd2/4.3tahoe

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

diff --git a/usr/src/new/X/xclock/Makefile b/usr/src/new/X/xclock/Makefile
new file mode 100644 (file)
index 0000000..f3067f4
--- /dev/null
@@ -0,0 +1,41 @@
+#
+# Copyright, 1985, Massachusetts Institute of Technology.
+#      xclock - makefile for the X window system clock.
+#
+#      Written by:     Tony Della Fera, DEC
+#                      11-Sep-84
+#
+
+DESTDIR =
+INCLUDES = -I../include
+
+CONFDIR = /usr/new
+XLIB = ../Xlib/libX.a
+CFLAGS = -O $(INCLUDES)
+CLIBS = -lm
+
+.SUFFIXES: .o .h .c .a
+
+OBJS = xclock.o
+
+all: xclock
+
+debug: xclock_d
+
+install: all
+       install -s xclock $(DESTDIR)$(CONFDIR)
+       chmod 755 $(DESTDIR)$(CONFDIR)/xclock
+
+clean: 
+       rm -f *~* *.bak core \#*
+       rm -f xclock.c.[0-9]* Makefile.[0-9]* xclock.1.[0-9]*
+       rm -f xclock.o xclock xclock_d
+
+igrind:
+       igrind xclock.c
+
+xclock: $(OBJS) $(XLIB)
+       $(CC) $(CFLAGS) -o xclock $(OBJS) $(XLIB) $(CLIBS)
+
+xclock_d: $(OBJS) $(XLIB)
+       $(CC) $(CFLAGS) -g -o xclock_d $(OBJS) $(XLIB) $(CLIBS)