Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit001cee8

Browse files
authored
Merge pull request#14 from vitcpp/create-src-subdir
Source files are moved into src subdirectory.
2 parents2a51384 +9b1153c commit001cee8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+12
-12
lines changed

‎Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ PGSPHERE_VERSION = 1.2.1
44
SRC_DIR =$(shell basename$(shell pwd))
55

66
MODULE_big = pg_sphere
7-
OBJS = sscan.o sparse.o sbuffer.o vector3d.o point.o\
8-
euler.o circle.o line.o ellipse.o polygon.o\
9-
path.o box.o output.o gq_cache.o gist.o key.o\
10-
gnomo.o healpix.o moc.oprocess_moc.o healpix_bare/healpix_bare.o\
11-
epochprop.o
7+
OBJS =src/sscan.osrc/sparse.osrc/sbuffer.osrc/vector3d.osrc/point.o\
8+
src/euler.osrc/circle.osrc/line.osrc/ellipse.osrc/polygon.o\
9+
src/path.osrc/box.osrc/output.osrc/gq_cache.osrc/gist.o\
10+
src/key.o src/gnomo.osrc/healpix.osrc/moc.osrc/process_moc.o\
11+
healpix_bare/healpix_bare.o src/epochprop.o
1212

1313
EXTENSION = pg_sphere
1414
RELEASE_SQL =$(EXTENSION)--$(PGSPHERE_VERSION).sql
@@ -208,16 +208,16 @@ endif
208208

209209
# end of local stuff
210210

211-
sscan.o : sparse.c
211+
src/sscan.o :src/sparse.c
212212

213-
sparse.c: sparse.y
213+
src/sparse.c:src/sparse.y
214214
ifdefYACC
215-
$(YACC) -d $(YFLAGS) -p sphere_yy -osparse.c $<
215+
$(YACC) -d $(YFLAGS) -p sphere_yy -o$@ $<
216216
else
217217
@$(missing) bison $< $@
218218
endif
219219

220-
sscan.c : sscan.l
220+
src/sscan.c :src/sscan.l
221221
ifdefFLEX
222222
$(FLEX) $(FLEXFLAGS) -Psphere -o$@ $<
223223
else

‎box.crenamed to‎src/box.c

File renamed without changes.

‎box.hrenamed to‎src/box.h

File renamed without changes.

‎circle.crenamed to‎src/circle.c

File renamed without changes.

‎circle.hrenamed to‎src/circle.h

File renamed without changes.

‎ellipse.crenamed to‎src/ellipse.c

File renamed without changes.

‎ellipse.hrenamed to‎src/ellipse.h

File renamed without changes.

‎epochprop.crenamed to‎src/epochprop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Transformation: Rigorous Treatment'; cf.
88
*/
99

1010
#include<math.h>
11-
#include<pgs_util.h>
11+
#include"pgs_util.h"
1212

1313
#include"point.h"
1414
#include"epochprop.h"
File renamed without changes.

‎euler.crenamed to‎src/euler.c

File renamed without changes.

‎euler.hrenamed to‎src/euler.h

File renamed without changes.

‎gist.crenamed to‎src/gist.c

File renamed without changes.

‎gist.hrenamed to‎src/gist.h

File renamed without changes.

‎gnomo.crenamed to‎src/gnomo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include<postgres.h>
22
#include<fmgr.h>
33

4-
#include<gnomo.h>
5-
#include<point.h>/* SPoint from pgsphere */
4+
#include"gnomo.h"
5+
#include"point.h"/* SPoint from pgsphere */
66

77
#include<math.h>
88

‎gnomo.hrenamed to‎src/gnomo.h

File renamed without changes.

‎gq_cache.crenamed to‎src/gq_cache.c

File renamed without changes.

‎healpix.crenamed to‎src/healpix.c

File renamed without changes.

‎key.crenamed to‎src/key.c

File renamed without changes.

‎key.hrenamed to‎src/key.h

File renamed without changes.

‎line.crenamed to‎src/line.c

File renamed without changes.

‎line.hrenamed to‎src/line.h

File renamed without changes.

‎moc.crenamed to‎src/moc.c

File renamed without changes.

‎output.crenamed to‎src/output.c

File renamed without changes.

‎path.crenamed to‎src/path.c

File renamed without changes.

‎path.hrenamed to‎src/path.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎pgs_moc.hrenamed to‎src/pgs_moc.h

File renamed without changes.
File renamed without changes.

‎pgs_util.hrenamed to‎src/pgs_util.h

File renamed without changes.

‎point.crenamed to‎src/point.c

File renamed without changes.

‎point.hrenamed to‎src/point.h

File renamed without changes.

‎polygon.crenamed to‎src/polygon.c

File renamed without changes.

‎polygon.hrenamed to‎src/polygon.h

File renamed without changes.
File renamed without changes.

‎sbuffer.crenamed to‎src/sbuffer.c

File renamed without changes.

‎sbuffer.hrenamed to‎src/sbuffer.h

File renamed without changes.

‎sparse.crenamed to‎src/sparse.c

File renamed without changes.

‎sparse.hrenamed to‎src/sparse.h

File renamed without changes.

‎sparse.yrenamed to‎src/sparse.y

File renamed without changes.

‎sscan.crenamed to‎src/sscan.c

File renamed without changes.

‎sscan.lrenamed to‎src/sscan.l

File renamed without changes.

‎types.hrenamed to‎src/types.h

File renamed without changes.

‎vector3d.crenamed to‎src/vector3d.c

File renamed without changes.

‎vector3d.hrenamed to‎src/vector3d.h

File renamed without changes.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp