~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to boot/arch/arm32/loader/Makefile.build

  • Committer: Martin Decky
  • Date: 2010-01-04 15:21:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20100104152119-kuzf344zkmfrxnxo
remove Stanse-specific constructs from makefiles
add generic support for checkers via generating an universal jobfiles (for kernel, boot loader, libraries and tasks)
add Stanse preprocessor which uses this universal jobfiles to run Stanse

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
%.o: %.S $(DEPEND)
66
66
        $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
 
67
ifeq ($(PRECHECK),y)
 
68
        $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__
 
69
endif
67
70
 
68
71
%.o: %.c $(DEPEND)
69
72
        $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
 
73
ifeq ($(PRECHECK),y)
 
74
        $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
 
75
endif
70
76
 
71
77
$(DEPEND):
72
78
        for file in $(RD_SRVS) ; do \