Skip to content
Snippets Groups Projects
Select Git revision
  • 5aa59f3f67af58ba1b5835cca929717924d25ef2
  • master default protected
  • ballinvoher protected
  • old-master
4 results

Targets.mk

Blame
  • Targets.mk 366 B
    #############################################################################
    # make target definitions
    
    default: $(LIBRARIES) $(PROGRAMS)
    
    libs:	$(LIBRARIES)
    
    bin:	$(PROGRAMS)
    
    # Clean object
    
    xobj:
    	rm -f $(OBJ)/*.o 
    
    # Clean MOC files
    
    xmoc:
    	rm -f $(BASE)/moc*.cc
    
    ############################################################################