Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lmliheng authored Jun 14, 2024
1 parent 4a851fc commit 1ff6a4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TARGET = cil
all: $(OBJFILES) $(TARGET)

objs:
@mkdir -p objs
mkdir -p objs

objs/bootstrap.o: src/bootstrap.c includes/*.h
$(CC) $(CFLAGS) -c $< -o $@
Expand All @@ -33,4 +33,4 @@ $(TARGET): $(OBJFILES)
$(CC) $(OBJFILES) -o $(TARGET)

clean:
rm -f $(OBJFILES) $(TARGET)
rm -f $(OBJFILES) $(TARGET)

0 comments on commit 1ff6a4b

Please sign in to comment.