Skip to content

Commit

Permalink
* initial source checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey.Sharkey authored and Jeffrey.Sharkey committed Oct 2, 2008
0 parents commit 6b01263
Show file tree
Hide file tree
Showing 77 changed files with 12,249 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
libprop 0.12 (released 2008-02-23)

* fixed bug with elevEnd calculation in pathLoss()
* added Longley-Rice propagation model

libprop 0.11 (released 2007-12-13)

* initial release under GNU license
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

1,252 changes: 1,252 additions & 0 deletions Doxyfile

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

CC=g++
CFLAGS=-I.
DEBUG=-g
DEPS=geom.h radio.h source.h utils.h
OBJ=geom.o radio.o source.o utils.o main.o
LIBS=-lm -lstdc++

#%.o: %.C $(DEPS)
# $(CC) -c -o $@ $< $(CFLAGS)

.C.o:
$(CC) -c $(DEBUG) $<

main: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)

clean:
rm -f *.o *~ core



40 changes: 40 additions & 0 deletions doc/html/annotated.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions doc/html/classConvert-members.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 97 additions & 0 deletions doc/html/classConvert.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added doc/html/classConvert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions doc/html/classConvertAlbers-members.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6b01263

Please sign in to comment.