Skip to content

Commit

Permalink
Update MAKEFILE
Browse files Browse the repository at this point in the history
Signed-off-by: Josef Edwards <joed6834@colorado.edu>
  • Loading branch information
bearycool11 authored Nov 15, 2024
1 parent e40d394 commit 806d2d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion MAKEFILE
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ generate_3sat_instance.o: 3-SAT.c SAT_Solver.h
$(CC) $(CFLAGS) $(INCLUDES) -c $<

# Existing targets
pmll: unified_voice.o pml_logic_loop.o memory_silo.o io_socket.o persistence.o main.o
pmll: unified_voice.o pml_logic_loop.o memory_silo.o io_socket.o persistence.o cross_talk.o main.o
$(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDES) -o $@ $^

pmll_np_solver: pmll_np_solver.o
Expand All @@ -51,6 +51,9 @@ io_socket.o: io_socket.c
persistence.o: persistence.c
$(CC) $(CFLAGS) $(INCLUDES) -c $<

cross_talk.o: cross_talk.c
$(CC) $(CFLAGS) $(INCLUDES) -c $<

main.o: main.c
$(CC) $(CFLAGS) $(INCLUDES) -c $<

Expand Down

0 comments on commit 806d2d4

Please sign in to comment.