help with makefile (mac)
So this is my current makefile for a program:
1 2 3 4 5 6 7 8 9
|
.PHONY: clean All
All:
@echo "----------Building project:[ Beads - Debug ]----------"
@$(MAKE) -f "Beads.mk"
clean:
@echo "----------Cleaning project:[ Beads - Debug ]----------"
@$(MAKE) -f "Beads.mk" clean
|
How do I edit this makefile to link the curses library?
Thanks!
Topic archived. No new replies allowed.