File: Imakefile

package info (click to toggle)
xwit 3.4-9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 172 kB
  • ctags: 124
  • sloc: ansic: 1,267; makefile: 58
file content (26 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: Imakefile,v 3.1 95/08/24 17:26:21 dd Exp $
# Imakefile for xwit: window interface tool

LOCAL_LIBRARIES = $(XLIB)
SRCS = xwit.c dsimple.c ClientWin.c
OBJS = xwit.o dsimple.o ClientWin.o

DISTFILES = README Imakefile $(SRCS) dsimple.h xwit.man patchlevel.h

ComplexProgramTarget(xwit)

dist:
	@echo $(DISTFILES)

shar: $(PROGRAM).shar

$(PROGRAM).shar: $(DISTFILES)
	shar $(DISTFILES) > $@

uu: $(PROGRAM).tar.Z.uu

$(PROGRAM).tar.Z.uu: $(DISTFILES)
	tar cf - $(DISTFILES) | compress | uuencode $(PROGRAM).tar.Z > $@

clean::
	$(RM) $(PROGRAM).shar $(PROGRAM).tar.Z.uu