File: Makefile

package info (click to toggle)
oonsoo 1.2-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,576 kB
  • ctags: 426
  • sloc: cpp: 24,373; makefile: 119
file content (34 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (4)
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
###############################################################################
# $Header:$
###############################################################################
#
# Makefile
#
# Bradford W. Mott
# July 3,1994
#
###############################################################################
# $Log:$
###############################################################################

## Library to build
LIBRARY = libSpriteData.a

## Includes
INCLUDE = $(INCLUDES)

all: $(LIBRARY)

install:

$(LIBRARY): 
	$(CC) -c *.cxx
	$(AR) $(AR_CREATE_FLAGS) $(LIBRARY) *.o
	$(RANLIB) $(LIBRARY)

.SUFFIXES: .cxx .a

clean:
	rm -f *.o $(LIBRARY)