mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-02-18 18:21:23 +01:00
15 lines
263 B
Makefile
15 lines
263 B
Makefile
# Makefile for libucix
|
|
|
|
OBJS = libucix.o
|
|
SRCS = libucix.c
|
|
|
|
all: libucix
|
|
|
|
libucix: ${OBJS}
|
|
${CC} ${LDFLAGS} -o libucix.so.${PKG_VERSION} ${OBJS} ${LIBDIR} ${LIBS}
|
|
|
|
clean:
|
|
rm -f libucix.so.* libucix.a ${OBJS}
|
|
|
|
depend:
|
|
${MAKEDEPEND} ${INCL} ${SRCS} ${LIBSRCS}
|