Skip to content

Commit 701ebbe

Browse files
committed
MAJOR experimental changes to orbital physics. moved entirely from keplerian to sgp4
1 parent 2cdf852 commit 701ebbe

7 files changed

Lines changed: 3192 additions & 250 deletions

File tree

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CC_LINUX = gcc
22
CC_WIN = x86_64-w64-mingw32-gcc
3-
CFLAGS = -Wall -Wextra -std=c99 -O2 -Isrc
3+
CFLAGS = -Wall -Wextra -std=c99 -O2 -Isrc -Ilib
44

55
# Files
66
SRC = src/main.c src/astro.c src/config.c
@@ -34,15 +34,15 @@ bin/TLEscope.exe: $(SRC) | bin
3434
bin/fetch_tle.exe: $(FETCH_SRC) | bin
3535
$(CC_WIN) $(CFLAGS) $(WIN_PATHS) -o $@ $^ $(CURL_WIN)
3636

37-
# Compiling (Linux only for object reuse)
37+
# Compilation
3838
build/%.o: src/%.c | build
3939
$(CC_LINUX) $(CFLAGS) -c $< -o $@
4040

41-
# Directory management
42-
bin build:
43-
@mkdir -p $@
41+
build:
42+
mkdir -p build
4443

45-
clean:
46-
rm -rf bin build
44+
bin:
45+
mkdir -p bin
4746

48-
.PHONY: all linux windows clean
47+
clean:
48+
rm -rf build bin

0 commit comments

Comments
 (0)