mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 21:34:08 -07:00
14 lines
253 B
Text
14 lines
253 B
Text
|
|
SRCDIR = $(ROOT)/src/se/
|
|
LIB = $(ROOT)/lib/libse.a
|
|
|
|
CPPFILES := $(shell echo $(SRCDIR)*.cpp)
|
|
OBJFILES = $(CPPFILES:.cpp=.o)
|
|
OBJECTS = $(notdir $(OBJFILES))
|
|
|
|
$(LIB): $(OBJECTS)
|
|
ar -r $(LIB) $(OBJECTS)
|
|
|
|
%.o: $(SRCDIR)%.cpp
|
|
$(CC) -c $(CFLAGS) $< -o $@
|
|
|