Changeset 5889fc74 in mainline for uspace/app/pcc/cc/ccom/Makefile
- Timestamp:
- 2011-07-25T20:03:53Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6c69d19
- Parents:
- b9a46fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/ccom/Makefile
rb9a46fc r5889fc74 34 34 DEFS = -Dmach_$(PLATFORM) -D__helenos__ -DPCC_DEBUG -DGCC_COMPAT -Dfree=free 35 35 BINARY = ccom 36 EXTRA_CLEAN = cgram.c cgram.h scan.c external.c external.h 36 37 PRE_DEPEND = cgram.c scan.c external.c external.h common.c compat.c 38 EXTRA_CLEAN = cgram.c cgram.h scan.c external.c external.h common.c compat.c \ 39 $(MIPDIR)/*.o $(MDIR)/*.o 37 40 38 41 POSIX_COMPAT = y … … 51 54 $(MIPDIR)/optim2.c \ 52 55 $(MIPDIR)/regs.c \ 53 $(MIPDIR)/common.c \54 $(MIPDIR)/compat.c \56 common.c \ 57 compat.c \ 55 58 cgram.c \ 56 59 scan.c \ … … 67 70 trees.c 68 71 72 include $(USPACE_PREFIX)/Makefile.common 73 69 74 cgram.c: cgram.y 70 75 $(YACC) $(YFLAGS) -d $< … … 76 81 mv lex.yy.c scan.c 77 82 78 external.c external.h: 79 ln -s arch/$(PLATFORM)/external.c external.c 80 ln -s arch/$(PLATFORM)/external.h external.h 83 compat.c: $(MIPDIR)/compat.c 84 ln -s -f $^ $@ 81 85 82 include $(USPACE_PREFIX)/Makefile.common 86 common.c: $(MIPDIR)/common.c 87 ln -s -f $^ $@ 83 88 89 external.c: arch/$(PLATFORM)/external.c 90 ln -s -f $^ $@ 91 92 external.h: arch/$(PLATFORM)/external.h 93 ln -s -f $^ $@ 94
Note:
See TracChangeset
for help on using the changeset viewer.