18 lines
276 B
Makefile
18 lines
276 B
Makefile
|
include ../Makefile.common
|
||
|
|
||
|
OBJ = $(patsubst %.c,%.o,$(wildcard *.c))
|
||
|
LIBNAME = libpng.a
|
||
|
CFLAGS += -I../zlib
|
||
|
|
||
|
all: $(LIBNAME)
|
||
|
|
||
|
$(LIBNAME): $(OBJ)
|
||
|
@echo Creating archive $@
|
||
|
@ar -csru $@ $(OBJ)
|
||
|
@echo
|
||
|
|
||
|
clean:
|
||
|
-@$(RM) *.o
|
||
|
-@$(RM) *.d
|
||
|
-@$(RM) $(LIBNAME)
|