Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions projects/v5/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,13 @@ $(BUILD_DIR)/%.o: $(SRC_DIR)/%.c

-include $(DEPS)

clean:
clean: mclean
for f in $(dir $(LIBS_TARGET)); do $(MAKE) -C $$f clean; done

mclean:
$(RM) $(OBJS) $(DEPS)

fclean: clean
fclean: mclean
for f in $(dir $(LIBS_TARGET)); do $(MAKE) -C $$f fclean; done
$(RM) $(NAME)

Expand All @@ -106,7 +108,7 @@ info-%:
# SPEC #
#------------------------------------------------#

.PHONY: clean fclean re
.PHONY: clean fclean mclean re
.SILENT:

####################################### END_5 ####
4 changes: 2 additions & 2 deletions projects/v5/lib/libarom/src/cherry.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "arom.h"

void arom_coco(void)
void arom_cherry(void)
{
write (1, "arom: coco\n", 11);
write (1, "arom: cherry\n", 13);
}
4 changes: 2 additions & 2 deletions projects/v5/lib/libarom/src/coco.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "arom.h"

void arom_cherry(void)
void arom_coco(void)
{
write (1, "arom: cherry\n", 13);
write (1, "arom: coco\n", 11);
}