initial commit
This commit is contained in:
17
ftgl/Makefile
Normal file
17
ftgl/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
include ../Makefile.common
|
||||
|
||||
OBJ = $(patsubst %.cpp,%.o,$(wildcard *.cpp))
|
||||
LIBNAME = libftgl.a
|
||||
CXXFLAGS += -I../freetype/include
|
||||
|
||||
all: $(LIBNAME)
|
||||
|
||||
$(LIBNAME): $(OBJ)
|
||||
@echo Creating archive $@
|
||||
@ar -crsu $@ $(OBJ)
|
||||
@echo
|
||||
|
||||
clean:
|
||||
-@$(RM) *.o
|
||||
-@$(RM) *.d
|
||||
-@$(RM) $(LIBNAME)
|
Reference in New Issue
Block a user