Code Search for Developers
 
 
  

Makefile from GreenSocs at Krugle


Show Makefile syntax highlighted

MODULES = example_plb example_simplebus

.PHONY: dummy modules modules-clean modules-install

all: modules

clean: modules-clean

install: modules-install

modules: $(patsubst %, _module_%, $(MODULES))
$(patsubst %, _module_%, $(MODULES)) : dummy
	$(MAKE) -C $(patsubst _module_%, %, $@)

modules-clean: $(patsubst %, _module_clean_%, $(MODULES))
$(patsubst %, _module_clean_%, $(MODULES)) : dummy
	$(MAKE) -i -C $(patsubst _module_clean_%, %, $@) clean

modules-install: $(patsubst %, _module_install_%, $(MODULES))
$(patsubst %, _module_install_%, $(MODULES)) : dummy
	$(MAKE) -C $(patsubst _module_install_%, %, $@) install




See more files for this project here

GreenSocs

To develop SystemC infrustructure, basic IP, patches and add on library code for eventual standerdization.\r\nThe GreenSocs project is made up of a number of contributions (sub projects). Please visit www.greensocs.com for more information.

Project homepage: http://sourceforge.net/projects/greensocs
Programming language(s): C,C++,Java,Perl,XML
License: other

  example_burst/
    Makefile
    example_burst.cpp
    master.h
    slave.h
  example_plb/
    Makefile
    PLBMaster.h
    PLBSimplememory.h
    example_plb.cpp
  example_ship/
    Makefile
    pv.txt
    pvt.txt
    ship_example.cpp
    ship_performance.ods
    ship_performance.png
  example_simple/
    Makefile
    example_simple.cpp
    sillysort.h
    simplememory.h
  example_simplebus/
    Makefile
    example_simplebus.cpp
    sillysort.h
    simplemaster.h
    simplememory.h
  example_splitcomplete/
    Makefile
    example_splitcomplete.cpp
    sillysort.h
    simplemaster.h
    simplememory_sc.h
  Makefile
  Makefile.am
  Makefile.defs