Skip to content

Commit

Permalink
Small makefile change
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronyagnik committed Dec 3, 2024
1 parent de45993 commit 24f2dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $(BUILD_DIR)/genetic: $(SRC_DIR)/main.cpp $(ALGO_DIR)/genetic.cpp
$(CPP) $^ -o $@ $(CFLAGS) $(OPTFLAGS)

$(BUILD_DIR)/cu_genetic: $(SRC_DIR)/main.cpp $(ALGO_DIR)/genetic.cu
$(NVCC) $^ -o $@ $(CFLAGS) $(OPTFLAGS)
$(NVCC) $^ -o $@ $(NVCCFLAGS)

$(BUILD_DIR)/dp_omp: $(SRC_DIR)/main.cpp $(ALGO_DIR)/dp_omp.cpp
$(CPP) $^ -o $@ $(CFLAGS_DP) $(OPTFLAGS_DP)
Expand Down

0 comments on commit 24f2dcb

Please sign in to comment.