shuffle files around to organize things properly

This commit is contained in:
Gwenhael Le Moine 2024-03-21 11:19:55 +01:00
parent cb8dc54fbf
commit b066da2c18
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
45 changed files with 23 additions and 23 deletions

24
.gitignore vendored
View file

@ -1,17 +1,17 @@
/Chf/mt_build/ /src/libChf/mt_build/
/Chf/st_build/ /src/libChf/st_build/
/src/*.o
manual/saturn.toc
manual/saturn.aux
manual/saturn.cp
manual/saturn.cps
manual/saturn.dvi
manual/saturn.info
manual/saturn.pdf
manual/saturn.ps
dist/pack dist/pack
dist/saturn dist/saturn
/src/*.o
docs/saturn.toc
docs/saturn.aux
docs/saturn.cp
docs/saturn.cps
docs/saturn.dvi
docs/saturn.info
docs/saturn.pdf
docs/saturn.ps
dist/Saturn dist/Saturn
dist/pack dist/pack
dist/saturn dist/saturn

View file

@ -6,7 +6,7 @@ CC ?= gcc
OPTIM ?= 2 OPTIM ?= 2
CFLAGS = -g -O$(OPTIM) -I./src/ -D_GNU_SOURCE=1 -I./Chf -L./Chf/st_build -lutil CFLAGS = -g -O$(OPTIM) -I./src/ -D_GNU_SOURCE=1 -I./src/libChf -L./src/libChf/st_build -lutil
LIBS = -lm -lChf -lXm LIBS = -lm -lChf -lXm
X11CFLAGS = $(shell pkg-config --cflags x11 xext) -D_GNU_SOURCE=1 X11CFLAGS = $(shell pkg-config --cflags x11 xext) -D_GNU_SOURCE=1
@ -50,20 +50,20 @@ MSFS= src/debug.msf \
src/x_func.msf \ src/x_func.msf \
src/saturn.msf \ src/saturn.msf \
src/util.msf \ src/util.msf \
Chf/chf.msf src/libChf/chf.msf
.PHONY: all clean clean-all pretty-code install mrproper .PHONY: all clean clean-all pretty-code install mrproper
all: Chf/st_build/libChf.a dist/saturn dist/pack dist/saturn.cat docs all: src/libChf/st_build/libChf.a dist/saturn dist/pack dist/saturn.cat manual
# Binaries # Binaries
Chf/st_build/libChf.a: src/libChf/st_build/libChf.a:
make -C Chf make -C src/libChf
dist/saturn: $(DOTOS) Chf/st_build/libChf.a dist/saturn: $(DOTOS) src/libChf/st_build/src/libChf.a
$(CC) $^ -o $@ $(CFLAGS) $(LIBS) $(CC) $^ -o $@ $(CFLAGS) $(LIBS)
dist/pack: src/pack.o src/disk_io.o src/debug.o Chf/st_build/libChf.a dist/pack: src/pack.o src/disk_io.o src/debug.o src/libChf/st_build/libChf.a
$(CC) $^ -o $@ $(CFLAGS) $(LIBS) $(CC) $^ -o $@ $(CFLAGS) $(LIBS)
dist/saturn.cat: $(MSFS) dist/saturn.cat: $(MSFS)
@ -71,14 +71,14 @@ dist/saturn.cat: $(MSFS)
do gencat $@ $$msf ; \ do gencat $@ $$msf ; \
done done
docs: manual:
make -C docs make -C manual
# Cleaning # Cleaning
clean: clean:
rm -f src/*.o rm -f src/*.o
make -C Chf clean make -C src/libChf clean
make -C docs clean make -C manual clean
mrproper: clean mrproper: clean
rm -f dist/pack dist/saturn dist/saturn.cat rm -f dist/pack dist/saturn dist/saturn.cat