Skip to content

Commit

Permalink
Delete build_linux.py, implement vcxproj_make.py in build_linux.bash
Browse files Browse the repository at this point in the history
  • Loading branch information
rcedgar committed Aug 21, 2024
1 parent e2a6e00 commit bac2cb0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 201 deletions.
1 change: 1 addition & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
vcxproj_make.py
make.std*
6 changes: 3 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
######################################################
# Makefile is generated by ./build_linux.py
# Makefile is generated by ./vcxproj_make.py
# Don't edit the Makefile -- update the python script
######################################################

Expand All @@ -8,10 +8,10 @@ OBJDIR := o
BINPATH := $(BINDIR)/muscle

CXX = g++
CXXFLAGS := $(CFLAGS) --std=c++11 -ffast-math -march=native -O3 -DNDEBUG -fopenmp
CXXFLAGS := $(CFLAGS) -ffast-math -march=native -O3 -DNDEBUG -fopenmp

UNAME_S := $(shell uname -s)
LDFLAGS := $(LDFLAGS) -ffast-math -march=native -O3 -fopenmp
LDFLAGS := $(LDFLAGS) -ffast-math -march=native -O3 -fopenmp
ifeq ($(UNAME_S),Linux)
LDFLAGS += -static
endif
Expand Down
4 changes: 3 additions & 1 deletion src/build_linux.bash
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
./build_linux.py --openmp
rm -f vcxproj_make.py
wget https://github.com/raw/rcedgar/vcxproj_make/b2b5c7a/vcxproj_make.py
./vcxproj_make.py --openmp
197 changes: 0 additions & 197 deletions src/build_linux.py

This file was deleted.

0 comments on commit bac2cb0

Please sign in to comment.