[go: up one dir, main page]

File: Makefile

package info (click to toggle)
atlas 3.0-8
  • links: PTS
  • area: main
  • in suites: potato
  • size: 13,624 kB
  • ctags: 11,226
  • sloc: ansic: 96,425; fortran: 46,368; sh: 34,605; makefile: 431; exp: 15
file content (33 lines) | stat: -rw-r--r-- 611 bytes parent folder | download
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
SHELL = /bin/sh
CC = gcc
NM = -o
OJ = -c

config: xconfig
	./xconfig
	rm -f ./xconfig

searchconf: 
	$(CC) -DForceSearch $(NM) xconfig config.c
	./xconfig
	rm -f ./xconfig

xconfig : config.c
	$(CC) $(NM) xconfig config.c

xatlas_tee : bin/atlas_tee.c
	$(CC) $(NM) xatlas_tee bin/atlas_tee.c

install :
	$(MAKE) -f Make.top install arch=$(arch)

startup  :
	$(MAKE) -f Make.top startup arch=$(arch)
refresh  :
	$(MAKE) -f Make.top refresh arch=$(arch)
clean    :
	$(MAKE) -f Make.top clean   arch=$(arch)
kill     :
	$(MAKE) -f Make.top kill    arch=$(arch)
killall  :
	$(MAKE) -f Make.top killall arch=$(arch)