blob: 7807431cb2729f63c2683650342421e0468dfb9c (
plain)
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
|
#!smake
#
# Makefile for the sp subdirectory
#
include $(ROOT)/usr/include/make/PRdefs
# LCOPTS = -mips2 -non_shared -fullwarn -G 0
LCINCS = -I. -I$(ROOT)/usr/include/PR -I$(ROOT)/usr/include
CFILES = \
clearattribute.c \
color.c \
hide.c \
setattribute.c \
show.c \
sprite.c \
spriteex.c \
spriteex2.c \
spscale.c
ASFILES =
OBJECTS = $(CFILES:.c=.o)
default: $(OBJECTS)
include $(COMMONRULES)
|