Advertisement
Guest User

Untitled

a guest
Oct 5th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. This works (i.e., lcd.c gets compiled) but contains a clear cut-and-paste error.
  2. obj-$(CONFIG_STEPGEN) += stepgen.o
  3. stepgen-objs := hal/components/stepgen.o $(MATHSTUB)
  4. obj-$(CONFIG_STEPGEN) += lcd.o
  5. lcd-objs := hal/components/lcd.o $(MATHSTUB)
  6.  
  7. This doesn't work, lcd.c gets ignored:
  8. obj-$(CONFIG_STEPGEN) += stepgen.o
  9. stepgen-objs := hal/components/stepgen.o $(MATHSTUB)
  10. obj-$(CONFIG_LCD) += lcd.o
  11. lcd-objs := hal/components/lcd.o $(MATHSTUB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement