mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
7ecf7a7e58
symbol, remove geos.o. git-svn-id: svn://svn.cc65.org/cc65/trunk@3989 b7a2c559-68d2-44c3-8de9-860c34a00d81
28 lines
477 B
Makefile
28 lines
477 B
Makefile
#
|
|
# Makefile for GEOS lib
|
|
# for cc65
|
|
#
|
|
# Maciej 'YTM/Elysium' Witkowiak
|
|
|
|
OBJ_DIRS=common conio devel disk dlgbox file graph menuicon memory mousesprite process runtime system
|
|
|
|
all:
|
|
@for i in $(OBJ_DIRS); do $(MAKE) -C $$i; done
|
|
@for i in $(OBJ_DIRS); do $(AR) a ../geos.lib $$i/*.o; done
|
|
|
|
rebuild: zap all clean
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@for i in $(OBJ_DIRS); do \
|
|
cd $$i; \
|
|
$(MAKE) clean; \
|
|
cd ..; \
|
|
done
|
|
|
|
.PHONY: zap
|
|
zap: clean
|
|
@$(RM) ../geos.lib
|
|
|