Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
reconstruct directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
holishing committed Mar 8, 2020
1 parent 4693f0c commit a37012b
Show file tree
Hide file tree
Showing 32 changed files with 94 additions and 194 deletions.
33 changes: 0 additions & 33 deletions 00_bern2time/Makefile.am

This file was deleted.

44 changes: 0 additions & 44 deletions 01_raw/Makefile.am

This file was deleted.

27 changes: 0 additions & 27 deletions 02_remove_trend/Makefile.am

This file was deleted.

27 changes: 0 additions & 27 deletions 03_remove_period/Makefile.am

This file was deleted.

27 changes: 0 additions & 27 deletions 04_remove_antenna/Makefile.am

This file was deleted.

27 changes: 0 additions & 27 deletions 05_Fit_velocity/Makefile.am

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#### Simple Makefile for build a pack

SUBDIRS = 00_bern2time 01_raw 02_remove_trend 03_remove_period 04_remove_antenna 05_Fit_velocity util
SUBDIRS = src

MAINdir=build/
MAIN_DATA=COPYRIGHT.md README.md
Expand Down
10 changes: 2 additions & 8 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([timeseries_process], [2019.1005.0], [https://github.com/sean0921/timeseries_process])
AC_INIT([timeseries_process], [2020.308.0], [https://github.com/sean0921/timeseries_process])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
#AC_CONFIG_SRCDIR([])
#AC_CONFIG_HEADERS([config.h])
Expand Down Expand Up @@ -53,13 +53,7 @@ esac

# Checks for library functions.

AC_CONFIG_FILES([00_bern2time/Makefile
01_raw/Makefile
02_remove_trend/Makefile
03_remove_period/Makefile
04_remove_antenna/Makefile
05_Fit_velocity/Makefile
util/Makefile
AC_CONFIG_FILES([src/Makefile
common/version.rc
Makefile])
AC_OUTPUT
85 changes: 85 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
#Makefile

TARGETdir=../build
TARGET_PROGRAMS=bern2time getpl comfilt raw comfilt_trend remove_trend remove_period remove_antenna fit plot_ts
TARGET_DATA=comfilt.inp.example raw.inp.example plot_ts.inp.example order.txt

bern2time_SOURCES=bern2time.for ../common/bubblesort.for
getpl_SOURCES=getpl.for ../common/bubblesort.for
comfilt_SOURCES=comfilt.for ../common/bubblesort.for ../common/int2char.for ../common/lsqr.for
raw_SOURCES=comfilt.for ../common/bubblesort.for ../common/int2char.for ../common/lsqr.for
raw_FCFLAGS=-DRAW
raw_FFLAGS=-DRAW
comfilt_trend_SOURCES=comfilt_trend.for ../common/bubblesort.for ../common/int2char.for ../common/lsqr.for
remove_trend_SOURCES=remove_trend.for
remove_period_SOURCES=remove_period.for
remove_antenna_SOURCES=remove_antenna.for
fit_SOURCES=fit.for ../common/int2char.for ../common/lsqr.for
plot_ts_SOURCES=plot_ts.for

if IS_WINDOWS

bern2time_DEPENDENCIES=bern2time.rc.o
getpl_DEPENDENCIES=getpl.rc.o
comfilt_DEPENDENCIES=comfilt.rc.o
raw_DEPENDENCIES=raw.rc.o
comfilt_trend_DEPENDENCIES=comfilt_trend.rc.o
remove_trend_DEPENDENCIES=remove_trend.rc.o
remove_period_DEPENDENCIES=remove_period.rc.o
remove_antenna_DEPENDENCIES=remove_antenna.rc.o
fit_DEPENDENCIES=fit.rc.o
plot_ts_DEPENDENCIES=plot_ts.rc.o
bern2time_LDFLAGS=bern2time.rc.o
getpl_LDFLAGS=getpl.rc.o
comfilt_LDFLAGS=comfilt.rc.o
raw_LDFLAGS=raw.rc.o
comfilt_trend_LDFLAGS=comfilt_trend.rc.o
remove_trend_LDFLAGS=remove_trend.rc.o
remove_period_LDFLAGS=remove_period.rc.o
remove_antenna_LDFLAGS=remove_antenna.rc.o
fit_LDFLAGS=fit.rc.o
plot_ts_LDFLAGS=plot_ts.rc.o
SUFFIXES = .rc .o
RCFILES=bern2time.rc comfilt.rc comfilt_trend.rc fit.rc getpl.rc plot_ts.rc raw.rc remove_antenna.rc remove_period.rc remove_trend.rc

$(RCFILES): %.rc:
printf "id ICON \"$$(basename $@ .rc).ico\"" > $@
cat ../common/version.rc >> $@

bern2time.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

getpl.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

comfilt.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

raw.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

comfilt_trend.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

remove_trend.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

remove_period.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

remove_antenna.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

fit.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

plot_ts.rc.o: %.rc.o: %.rc
$(WINDRES) $< -O coff -o $@

ico: %.rc
convert -density 384 ../icons/sketchy_plot.svg -define icon:auto-resize $$(basename $< .rc).ico

clean-local:
rm -f *.rc

endif
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions src/order.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
00_bern2time
01_raw
02_remove_trend
03_remove_period
04_remove_antenna
05_Fit_velocity
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a37012b

Please sign in to comment.