source: branches/reconfiguration/platforms/tsar_generic_iob/Makefile @ 774

Last change on this file since 774 was 756, checked in by cfuguet, 10 years ago

reconfiguration/tsar_generic_iob: init memory value

  • Initialize memory with value different than 0 to expose software bugs concerning not initialized data
  • Adding Makefile rule to generate platform cscope tags file
  • Property svn:executable set to *
File size: 285 bytes
Line 
1TAGS := cscope.out
2
3all: simul.x
4tags: $(TAGS)
5
6simul.x: top.cpp top.desc
7        soclib-cc -P -p top.desc -I. -o simul.x
8
9$(TAGS): top.desc
10        soclib-cc -p $< --tags --tags-type=cscope --tags-output=$@
11
12clean:
13        soclib-cc -x -p top.desc -I.
14        rm -rf *.o *.x tty* term*
15
16.PHONY: simul.x $(TAGS)
17
Note: See TracBrowser for help on using the repository browser.