Don't use -import argument as fprintf format
[nedit.git] / Microline / XmL / Makefile.common
blob6d2fe783a711820715bd8f611bbece36e7b62086
1 # $Id: Makefile.common,v 1.1 2003/12/25 06:55:07 tksoh Exp $
3 # Platform independent part of make procedure for Nirvana utilities directory, 
4 # included by machine specific makefiles.
7 .c.o:
8         $(CC) -c -I.. $(CFLAGS) -o $@ $<
10 OBJS = Folder.o XmL.o 
12 all: libXmL.a
14 libXmL.a: $(OBJS)
15         $(AR) $(ARFLAGS) libXmL.a $(OBJS)
17 clean:
18         rm -f $(OBJS) libXmL.a
20 # Get the dependencies for all objects
21 include Makefile.dependencies