-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (27 loc) · 1013 Bytes
/
Makefile
File metadata and controls
38 lines (27 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
DOC_DIR = /home/wind-wiki/htdocs/doc/
all: I2C_accel_gyro_combo.html xbee.html xbee_tips.html uart.html fio.html \
sd.html sd_logger_app.html experiment10252012.html wired_sensors.html
I2C_accel_gyro_combo.html:
markdown I2C_accel_gyro.md > $(DOC_DIR)I2C_accel_gyro_combo.html
xbee.html:
markdown xbee.md > $(DOC_DIR)xbee.html
xbee_tips.html:
markdown xbee_tutorial.md > $(DOC_DIR)xbee_tips.html
fio.html:
cp fio.jpg $(DOC_DIR)fio.jpg
markdown fio.md > $(DOC_DIR)fio.html
uart.html:
markdown UART.md > $(DOC_DIR)uart.html
cp beaglexbee.jpg $(DOC_DIR)beaglexbee.jpg
sd_logger_app.html:
markdown sd_logger.md > $(DOC_DIR)sd_logger_app.html
cp accel.png $(DOC_DIR)accel.png
cp gyro.png $(DOC_DIR)gyro.png
sd.html:
markdown sd.md > $(DOC_DIR)sd.html
experiment10252012.html:
markdown experiments10252012/log.md > $(DOC_DIR)experiment10252012.html
wired_sensors.html:
markdown wired_sensors.md > $(DOC_DIR)wired_sensors.html
clean:
rm $(DOC_DIR)xbee.html $(DOC_DIR)I2C_accel_gyro_combo.html