You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/popen-noshell/Makefile

15 lines
217 B
Makefile

SRCS=popen_noshell.c
OBJS:=$(SRCS:%.c=%.o)
%.o: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
all: libpopen_noshell.a
libpopen_noshell.a: $(OBJS)
$(AR) rcs $@ $(OBJS)
clean:
rm -rf *.o
rm -rf libpopen_noshell.a