Skip to content

Commit

Permalink
First working code
Browse files Browse the repository at this point in the history
  • Loading branch information
haunma committed Feb 15, 2016
1 parent 0b12d78 commit ca56fb4
Show file tree
Hide file tree
Showing 5 changed files with 794 additions and 92 deletions.
19 changes: 4 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,17 @@
# Compiled Object files
*.slo
*.lo
*.o
*.obj
*.dtbo

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# User-installed libraries
libmseed/*
kiss_fft130/*

# Executables
*.bin
/seiscape
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
CFLAGS+=-Wall -Werror
LDLIBS+= -lpthread -lprussdrv
LDLIBS+= -lm -lpthread -lprussdrv libmseed/libmseed.a

all: seiscape.bin seiscape
all: seiscape seiscape.bin

clean:
rm -f seiscape *.o *.bin
rm -f seiscape *.o *.bin kiss_fft130/*.o

seiscape.bin: seiscape.p
pasm -b $^

seiscape: seiscape.o
seiscape: seiscape.o kiss_fft130/kiss_fft.o kiss_fft130/kiss_fftr.o

MH-SEISCAPE-00A0.dtbo: MH-SEISCAPE.dts
dtc -@ -I dts -O dtb -o $@ $<
Expand Down
Loading

0 comments on commit ca56fb4

Please sign in to comment.