bluecore/corona/Makefile

17 lines
336 B
Makefile
Raw Permalink Normal View History

2008-01-16 12:45:17 +01:00
include ../Makefile.common
OBJ = $(patsubst %.cpp,%.o,$(wildcard src/*.cpp))
LIBNAME = libcorona.a
CXXFLAGS += -Isrc -I../libpng -I../zlib -I../physfs
all: $(LIBNAME)
$(LIBNAME): $(OBJ)
@echo Creating archive $@
@ar -csru $@ $(OBJ)
@echo
clean:
-@$(RM) src$(SLASH)*.o
-@$(RM) src$(SLASH)*.d
-@$(RM) $(LIBNAME)