a47e76845f
The common/ directory is empty, only containing more directories to be built, and the DEBUG flag isn't being used.
14 lines
188 B
Makefile
14 lines
188 B
Makefile
all:
|
|
$(MAKE) -C gameplay
|
|
$(MAKE) -C graphics
|
|
$(MAKE) -C map
|
|
$(MAKE) -C network
|
|
$(MAKE) -C script
|
|
$(MAKE) -C ui
|
|
$(MAKE) -C utilities
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|