File: makefile

package info (click to toggle)
eso-midas 22.02pl1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 146,592 kB
  • sloc: ansic: 360,666; makefile: 6,230; sh: 6,003; pascal: 535; perl: 40; awk: 36; sed: 14
file content (32 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (7)
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
# @(#)makefile	19.1 (ESO-IPG) 02/25/03 13:54:04
# .COPYRIGHT:   Copyright (c) 1994 European Southern Observatory,
#                                               all rights reserved
# .TYPE         Make file
# .LANGUAGE     makefile syntax
# .ENVIRONMENT  Unix Systems. 
# .COMMENT      Compiles source files and generates "libdsp.a" library.
# .REMARKS
# .AUTHOR       

include ../../local/default.mk

CFLAGS += $(C_OPT) $(SH_OPT) $(DEBUG) $(SYS) -I$(INC) $(X11INC)

LIB =   $(LIBDIR)/libdsp.a


OBJ =  dco.o


# DEPENDENCIES:
all: $(MAKEFILE_VMS) $(LIB)

$(MAKEFILE_VMS): makefile
	$(MAKE_VMS)

$(LIB): $(OBJ)
	$(AR) $(AR_OPT) $(LIB) $(OBJ)
	$(RANLIB) $(LIB)

clean:
	rm -f $(OBJ)