Skip to content

Commit

Permalink
corrected makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dkaramit committed Jul 11, 2023
1 parent 1d05e29 commit b20e68d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ STD=-std=c++20#you need c++20 for the constants
FLG=-I$(IncludeDir) $(OPT) $(STD) -Wall -pedantic


all: test.run examples sum
all: test.run examples sum.run

test.run: test.cpp makefile $(IncludeHPP)
$(CC) -o $@ $< $(FLG)
Expand All @@ -24,4 +24,5 @@ examples:

clean:
rm test.run || true
rm sum.run || true
cd Examples && $(MAKE) clean

0 comments on commit b20e68d

Please sign in to comment.