Skip to content
Snippets Groups Projects
Select Git revision
  • e9735e391dba61b267ab8ab01d03ec6102577eb6
  • master default
  • labcomm2014
  • labcomm2006
  • python_sig_hash
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.6
  • v2015.0
  • v2014.5
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
21 results

Makefile

Blame
  • Anders Blomdell's avatar
    Anders Blomdell authored
    Added some extra cleaning in lib/c/Makefile
    36ec36fc
    History
    Makefile 464 B
    SUBDIRS=duck_typing dynamic jgrafchart robot simple tcp \
    	twoway user_types wiki_example
    
    .PHONY: all
    
    all:
    	echo More to be done...
    	$(MAKE) -C twoway all
    
    .PHONY: test
    test:
    	echo More to be done...
    	cd simple ; sh compile.sh && sh run.sh
    	$(MAKE) -C duck_typing test
    	$(MAKE) -C twoway test 
    
    .PHONY: clean
    clean: $(SUBDIRS:%=clean-%)
    clean-%:
    	$(MAKE) -C $* clean 
    
    .PHONY: distclean
    distclean: $(SUBDIRS:%=distclean-%)
    distclean-%:
    	$(MAKE) -C $* distclean