File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ peripherals/soc_main/vhdl_ls.toml
19
19
BERTL /
20
20
21
21
software /memtool /memtool
22
+ software /prng /prng
22
23
software /processing_tools /lut_conf /lut_conf
23
24
software /processing_tools /mimg /mimg
24
25
software /sensor_tools /hist /hist
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ mkdir -p /usr/axiom/bin/
69
69
for dir in $( ls -d software/sensor_tools/* /) ; do cdmake " $dir " ; done
70
70
for dir in $( ls -d software/processing_tools/* /) ; do cdmake " $dir " ; done
71
71
cdmake software/memtool
72
+ cdmake software/prng
72
73
73
74
mkdir -p /usr/axiom/script/
74
75
for script in $( cat <( ls software/scripts) software/scripts/bringup_scripts.list | sort | uniq -u | grep -E ' \.sh$|\.py$' ) ; do ln -sf $( pwd) /software/scripts/$script /usr/axiom/script/$script ; chmod a+x $( pwd) /software/scripts/$script ; done
Original file line number Diff line number Diff line change
1
+
2
+ .SUFFIXES : .c .o .asm .hex .bin
3
+
4
+ TARGETS = prng
5
+
6
+ all : $(TARGETS )
7
+
8
+ CC = gcc
9
+ STRIP = strip
10
+ CFLAGS += -Wall -std=gnu99 -O3
11
+
12
+ install :
13
+ $(STRIP ) $(TARGETS )
14
+ for TARGET in $( TARGETS) ; do ln -sf $$ (pwd)/$$ TARGET /usr/bin/$$ TARGET; chmod u+s $$ TARGET; done
15
+
16
+ clean :
17
+ rm -f * .o
18
+ rm -f $(TARGETS )
19
+ rm -f * ~ * .orig
You can’t perform that action at this time.
0 commit comments