Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Fix: check on justfile #6

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ watch:
@echo "Watching slides"
typst w slides.typ

# Compile and Run the C code
c:
@echo "Compiling and Running the C code"
@echo "TODO!"
# Compile the C code in "code/"
jaoleal marked this conversation as resolved.
Show resolved Hide resolved
compile:
#!/usr/bin/env bash
echo "Compiling all *.c code to output"
rm -r ./output;mkdir ./output
for FILE in $(ls ./code/)
do
cc ./code/$FILE -o ./output/$FILE.out
done