home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / freedraft.tar.gz / freedraft.tar / FREEdraft-050298 / COMMAND / Makefile < prev    next >
Makefile  |  1998-04-30  |  2KB  |  52 lines

  1. # COMMAND subdirectory Makefile
  2.  
  3. # Copyright (C) 1998  Cliff Johnson                                       #
  4. #                                                                         #
  5. # This program is free software; you can redistribute it and/or           #
  6. # modify it under the terms of the GNU  General Public                    #
  7. # License as published by the Free Software Foundation; either            #
  8. # version 2 of the License, or (at your option) any later version.        #
  9. #                                                                         #
  10. # This software is distributed in the hope that it will be useful,        #
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of          #
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       #
  13. # General Public License for more details.                                #
  14. #                                                                         #
  15. # You should have received a copy of the GNU General Public License       #
  16. # along with this software (see COPYING.LIB); if not, write to the        #
  17. # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #
  18.  
  19. FREEROOT=..
  20. include $(FREEROOT)/Makefile.in
  21.  
  22. SRCS = \
  23. menuhandler.cpp \
  24. inputstring.cpp \
  25. comexception.cpp \
  26. colordialog.cpp \
  27. linestyledialog.cpp  
  28.  
  29. OBJS = $(SRCS:%.cpp=%.o)
  30.  
  31. all : $(OBJS)
  32.     cd $(COMMAND)/NOMENU ; $(MAKE)
  33.     cd $(COMMAND)/GEOMMENU ; $(MAKE)
  34.     cd $(COMMAND)/SAVERECALLMENU ; $(MAKE)
  35.     cd $(COMMAND)/MEASUREMENTMENU ; $(MAKE)
  36.  
  37. %.o : %.cpp
  38.     $(CXX) $*.cpp  $(CFLAGS) -c 
  39. clean : 
  40.     rm -f *.o 
  41.     cd $(COMMAND)/NOMENU ; $(MAKE) clean
  42.     cd $(COMMAND)/GEOMMENU ; $(MAKE) clean
  43.     cd $(COMMAND)/SAVERECALLMENU ; $(MAKE) clean
  44.     cd $(COMMAND)/MEASUREMENTMENU ; $(MAKE) clean
  45.  
  46. vimclean : clean
  47.     rm -f *~
  48.     cd $(COMMAND)/NOMENU ; $(MAKE) vimclean
  49.     cd $(COMMAND)/GEOMMENU ; $(MAKE) vimclean
  50.     cd $(COMMAND)/SAVERECALLMENU ; $(MAKE) vimclean
  51.     cd $(COMMAND)/MEASUREMENTMENU ; $(MAKE) vimclean
  52.