*** empty log message ***

This commit is contained in:
2005-05-08 10:39:40 +00:00
parent 98f668d66f
commit 273adcb58d
5 changed files with 47 additions and 5 deletions

20
ase/stx/makefile.in Normal file
View File

@ -0,0 +1,20 @@
SRCS = stx.c memory.c object.c
OBJS = $(SRCS:.c=.o)
OUT = libxpstx.a
CC = @CC@
RANLIB = @RANLIB@
CFLAGS = @CFLAGS@ -I@abs_top_builddir@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
all: $(OBJS)
ar cr $(OUT) $(OBJS)
ranlib $(OUT)
clean:
rm -rf $(OBJS) $(OUT) *.o
.SUFFIXES: .c .o
.c.o:
$(CC) $(CFLAGS) -c $<