Skip to content

Commit

Permalink
tidy concept/basics (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
keiravillekode authored Dec 30, 2024
1 parent 49ba04c commit 652836b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/basics/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ALL_ASFLAGS += $(ASFLAGS)

C_OBJS = $(patsubst %.c,%.o,$(wildcard *.c))
AS_OBJS = $(patsubst %.asm,%.o,$(wildcard *.asm))
ALL_OBJS = $(C_OBJS) $(AS_OBJS)
ALL_OBJS = $(filter-out exemplar.o,$(C_OBJS) $(AS_OBJS))

CC_CMD = $(CC) $(ALL_CFLAGS) -c -o $@ $<

Expand Down
1 change: 1 addition & 0 deletions exercises/concept/basics/basics_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ int main(void) {
assert(8 == preparation_time_in_minutes(4));
assert(32 == elapsed_time_in_minutes(1, 30));
assert(16 == elapsed_time_in_minutes(4, 8));
return 0;
}

0 comments on commit 652836b

Please sign in to comment.