Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / Plugins / OOP / XTWindows / makefile-new
blob28e53fc3314a1cf7e4a2f92503f76887fe9211f9
1 # $Date: 2011-08-02 00:13:23 +0200 (Di, 02. Aug 2011) $
2 # $Revision: 816 $
3 ##############################################################################
5 ifndef TOPLEVEL
6         TOPLEVEL=$(shell pwd)/../../..
7 endif
9 ##############################################################################
11 include         config.mk
13 ##############################################################################
15 # Project Object files
18 OBJS    =       $(BEGIN_OBJS) \
19                 $(OBJDIR)/XTWindows.o \
20                 $(END_OBJS) \
23 ##############################################################################
25 # Autodependencies
27 ifneq ($(MAKECMDGOALS),clean)
28         -include $(OBJS:.o=.d)
29 endif
31 ##############################################################################
33 # Targets
36 NAME    =       xtwindows.plugin
37 NAME_DB =       $(NAME).debug
39 ##############################################################################
41 .PHONY: all install clean bump dump nodebug
43 all:    $(BINDIR)/$(NAME) \
44         $(BINDIR)/$(NAME_DB)
46 ##############################################################################
48 $(BINDIR)/$(NAME) $(BINDIR)/$(NAME_DB) : $(OBJS)
49         $(ECHO) "Link $(NAME)"
50         @$(CC) $(OBJS) $(LFLAGS) $(DEFINES) -o$(BINDIR)/$(NAME_DB)
51         @$(STRIP) $(SFLAGS) $(BINDIR)/$(NAME_DB) -o $(BINDIR)/$(NAME)
52         @chmod u+x $@
54 ##############################################################################
56 install:
57         -@$(ECHO) "Installing $(NAME)"
58         copy $(BINDIR)/$(NAME) Scalos:Plugins/OOP clone
61 clean:
62         -@$(RM) -frv $(OBJDIR)/*.o $(OBJDIR)/*.d $(OBJDIR)/*.d.* \
63                 $(OBJDIR)/*.i $(OBJDIR)/*.s \
64                 $(BINDIR)/$(NAME) $(BINDIR)/$(NAME_DB) \
65                 *.dump *_str.*
67 ##############################################################################