File: makefile

package info (click to toggle)
vfu 4.06-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,088 kB
  • ctags: 2,184
  • sloc: cpp: 14,482; ansic: 4,091; perl: 581; makefile: 540; sh: 57
file content (58 lines) | stat: -rw-r--r-- 972 bytes parent folder | download | duplicates (5)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

### MAKEMAKE STARTS HERE #######################################################


### Created by makemake.pl on Sun Dec 15 20:23:25 2002 #########################


### GLOBAL TARGETS #############################################################

default: all

re: rebuild

li: link

all: modules 

clean: clean-modules 

rebuild: rebuild-modules 

link: link-modules 

### GLOBAL (AND USER) DEFS #####################################################


AR = ar rv
CC = gcc
LD = gcc
MKDIR = mkdir -p
MODULES = vslib vfu
RANLIB = ranlib
RMDIR = rm -rf
RMFILE = rm -f
SRC = *.c *.cpp *.cc *.cxx


### MODULES ####################################################################

modules:
	make -C vslib 
	make -C vfu 

clean-modules:
	make -C vslib clean
	make -C vfu clean

rebuild-modules:
	make -C vslib rebuild
	make -C vfu rebuild

link-modules:
	make -C vslib link
	make -C vfu link


### MAKEMAKE ENDS HERE #########################################################