Skip to content

Commit

Permalink
Assignment 6 Part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mukesh2006 committed Dec 25, 2024
1 parent 6817b4a commit 41711cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#CROSS_COMPILE=aarch64-none-linux-gnu-
CC=$(CROSS_COMPILE)gcc
CFLAGS=-Werror -Wall -g -v
LDFLAGS=-pthread -lstdc++ -lrt
LDFLAGS=-pthread -lstdc++ -lrt

SOURCES=aesdsocket.c
TARGET=aesdsocket
Expand All @@ -17,7 +17,7 @@ all: $(TARGET)
default: $(TARGET)

$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -I$(INCLUDE_DIR) -o $(TARGET) $(LDFLAGS) $(OBJS)
$(CC) $(CFLAGS) -I$(INCLUDE_DIR) -o $(TARGET) $(OBJS) $(LDFLAGS)

clean:
rm -f $(OBJS) $(TARGET) *.map *.elf
Expand Down

0 comments on commit 41711cd

Please sign in to comment.