Files
libmfs/Makefile
Jesús A. Álvarez a04f1d89e6 no warnings on linux
2009-04-02 19:43:09 +00:00

16 lines
232 B
Makefile

LIB = libmfs.a
CC = gcc
AR = ar
RANLIB = ranlib
CFLAGS = -Wno-multichar -fPIC -std=c99 -I.. -DUSE_LIBRES
all: $(LIB)
$(LIB): mfs.c
$(CC) -c $(CFLAGS) mfs.c
$(AR) -ru $(LIB) mfs.o
$(RANLIB) $(LIB)
clean:
rm -rf libmfs.a mfs.o