Makefile 234 Bytes
Newer Older
1
2
3
libfex_SOURCES	:= $(wildcard libfex/*.c)
libfex_OBJS	:= $(patsubst %.c,$(OBJDIR)/%.o,$(libfex_SOURCES))
libfex_LIB	:= $(O)/libfex.a
4

5
6
SRCS	+= $(libfex_SOURCES)
OBJS	+= $(libfex_OBJS)
7

8
libs: $(libfex_LIB)
9

10
$(libfex_LIB): $(libfex_OBJS)