URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [userland/] [sash/] [libsash/] [Makefile] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
LIB = libsash.a
CHOPSRC = utils.c
LIBOBJS = intflag.o modestring.o timestring.o isadir.o copyfile.o \
buildname.o expandwildcards.o namesort.o match.o makeargs.o \
makestring.o chunks.o expandenvvar.o
CFLAGS += -I../
all: $(LIB)
$(LIBOBJS): $(CHOPSRC)
$(CC) $(CFLAGS) -DL_$(basename $*) -o $(basename $*).o -c $^
$(LIB): $(LIB)($(LIBOBJS))
$(RANLIB) $(LIB)
clean:
rm -f $(LIB) *.o
Go to most recent revision | Compare with Previous | Blame | View Log