Changes between Version 2 and Version 3 of SujetTP1-2017


Ignore:
Timestamp:
Feb 2, 2017, 9:02:29 PM (7 years ago)
Author:
franck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SujetTP1-2017

    v2 v3  
    9292}}}
    9393{{{#!protected
     94Un `Makefile` un peu plus complexe qui se charge de la copie et qui utilise la règle de compilation implicite:
    9495{{{#!make
    9596CC=bcm2708hardfp-gcc
    9697CFLAGS=-O2 -static
    97 helloworld : helloworld.c
     98CARD=5020
     99NAME=lacas
     100APP=helloworld
     101
     102all: $(APP)
     103    scp -P $(CARD) $^ pi@132.227.102.36:lacas
     104
     105clean:
     106    rm $(APP)
    98107}}}
    99108}}}