[go: up one dir, main page]

Menu

[ffec3f]: / Xlt / Makefile.common  Maximize  Restore  History

Download this file

22 lines (15 with data), 440 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# $Id: Makefile.common,v 1.1 2003/12/25 06:55:07 tksoh Exp $
#
# Platform independent part of make procedure for Nirvana utilities directory,
# included by machine specific makefiles.
#
.c.o:
$(CC) -c -I../Xlt $(CFLAGS) -o $@ $<
OBJS = BubbleButton.o SlideC.o
all: libXlt.a
libXlt.a: $(OBJS)
$(AR) $(ARFLAGS) libXlt.a $(OBJS)
clean:
rm -f $(OBJS) libXlt.a
# Get the dependencies for all objects
include Makefile.dependencies