File: Makefile

package info (click to toggle)
ctn 3.2.0~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 15,336 kB
  • ctags: 21,262
  • sloc: ansic: 179,501; makefile: 7,004; java: 1,863; csh: 1,067; yacc: 523; sh: 424; cpp: 394; sql: 389; lex: 170
file content (36 lines) | stat: -rw-r--r-- 708 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
27
28
29
30
31
32
33
34
35
36
#	Makefile for DICOM facility (only defines an include file)

include $(DICOM_MAKE)
VPATH = ../../include
CFLAGS = $(C_OPTS) -I$(DICOM_INCLUDE)

library:
install:
	$(INSTALLINCLUDE) print_queue.h $(DICOM_INCLUDE)
	$(INSTALLINCLUDE) iqueues.h $(DICOM_INCLUDE)
	$(INSTALLINCLUDE) UxXt.h $(DICOM_INCLUDE)

install-clean:	install

headerexport: install

clean:
	rm -f *.a *.o *.BAK *.bak *% core

indent:
	$(INDENT) print_queue.h
	$(INDENT) iqueues.h
	$(INDENT) UxXt.h
checkin:
	$(INDENT) print_queue.h;     $(CI) print_queue.h
	$(INDENT) iqueues.h;     $(CI) iqueues.h
	$(INDENT) UxXt.h;     $(CI) UxXt.h
	rm -f *.a *.o *.BAK *.bak *% core

checkout:
	$(CO) print_queue.h
	$(CO) iqueues.h
	$(CO) UxXt.h

lint: