This commit is contained in:
3eef8a28f26fb2bcc514e6f1938929a1f931762 2023-02-06 15:31:02 -05:00
parent 96dfbf9a40
commit 4e1e916c40
2 changed files with 4 additions and 4 deletions

View file

@ -14,9 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Compile (make)
run: |
find .
make
run: make
- name: Push compiled binary
run: |
git config --global user.name "Quatalog Compiler"

View file

@ -8,7 +8,9 @@ json.o: 3rdparty/jsoncpp/dist/jsoncpp.cpp
3rdparty/jsoncpp/dist/jsoncpp.cpp:
git submodule update --init
cd 3rdparty/jsoncpp; ./amalgamate.py
find .
cd 3rdparty/jsoncpp
./amalgamate.py
%.o: %.cpp %.hpp
$(CXX) $(CXXFLAGS) $? -o $@