Changes in / [c936c7f:badbb9ad] in mainline
- Location:
- uspace/app/pcc/cc
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/cc/Makefile
rc936c7f rbadbb9ad 35 35 BINARY = cc 36 36 37 PRE_DEPEND = compat.c 38 EXTRA_CLEAN = compat.c 37 POSIX_COMPAT = y 39 38 40 POSIX_COMPAT = y 39 41 40 42 41 SOURCES = \ 43 42 cc.c \ 44 compat.c43 $(MIPDIR)/compat.c 45 44 46 45 include $(USPACE_PREFIX)/Makefile.common 47 46 48 compat.c: $(MIPDIR)/compat.c49 ln -s -f $^ $@50 -
uspace/app/pcc/cc/ccom/Makefile
rc936c7f rbadbb9ad 34 34 DEFS = -Dmach_$(PLATFORM) -D__helenos__ -DPCC_DEBUG -DGCC_COMPAT -Dfree=free 35 35 BINARY = ccom 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 36 EXTRA_CLEAN = cgram.c cgram.h scan.c external.c external.h 40 37 41 38 POSIX_COMPAT = y … … 54 51 $(MIPDIR)/optim2.c \ 55 52 $(MIPDIR)/regs.c \ 56 common.c \57 compat.c \53 $(MIPDIR)/common.c \ 54 $(MIPDIR)/compat.c \ 58 55 cgram.c \ 59 56 scan.c \ … … 70 67 trees.c 71 68 72 include $(USPACE_PREFIX)/Makefile.common73 74 69 cgram.c: cgram.y 75 70 $(YACC) $(YFLAGS) -d $< … … 81 76 mv lex.yy.c scan.c 82 77 83 compat.c: $(MIPDIR)/compat.c 84 ln -s -f $^ $@ 78 external.c external.h: 79 ln -s arch/$(PLATFORM)/external.c external.c 80 ln -s arch/$(PLATFORM)/external.h external.h 85 81 86 common.c: $(MIPDIR)/common.c 87 ln -s -f $^ $@ 82 include $(USPACE_PREFIX)/Makefile.common 88 83 89 external.c: arch/$(PLATFORM)/external.c90 ln -s -f $^ $@91 92 external.h: arch/$(PLATFORM)/external.h93 ln -s -f $^ $@94 -
uspace/app/pcc/cc/ccom/mkext/Makefile
rc936c7f rbadbb9ad 37 37 POSIX_COMPAT = y 38 38 39 PRE_DEPEND = mkext.c table.c common.c40 EXTRA_CLEAN = mkext.c table.c common.c41 42 39 # FIXME: external.{c,h} must be generated for each target system 43 40 44 41 SOURCES = \ 45 mkext.c \46 table.c \47 common.c42 ${MIPDIR}/mkext.c \ 43 $(MDIR)/table.c \ 44 ${MIPDIR}/common.c 48 45 49 46 include $(USPACE_PREFIX)/Makefile.common 50 47 51 mkext.c: $(MIPDIR)/mkext.c52 ln -s -f $^ $@53 54 table.c: $(MDIR)/table.c55 ln -s -f $^ $@56 57 common.c: $(MIPDIR)/common.c58 ln -s -f $^ $@59 -
uspace/app/pcc/cc/cpp/Makefile
rc936c7f rbadbb9ad 31 31 ARCHDIR = ../../arch/$(PLATFORM) 32 32 EXTRA_CFLAGS = -I$(MIPDIR) -I$(ARCHDIR) -w 33 EXTRA_CLEAN = y.tab.c y.tab.h 33 34 DEFS = -DCPP_DEBUG -Dfree=free -DCPPBUF=16384 34 35 BINARY = cpp 35 36 PRE_DEPEND = compat.c37 EXTRA_CLEAN = compat.c y.tab.c y.tab.h38 36 39 37 POSIX_COMPAT = y … … 45 43 cpp.c \ 46 44 token.c \ 47 compat.c 48 49 include $(USPACE_PREFIX)/Makefile.common 45 $(MIPDIR)/compat.c 50 46 51 47 y.tab.c: 52 48 $(YACC) -d cpy.y 53 49 54 compat.c: $(MIPDIR)/compat.c 55 ln -s -f $^ $@ 50 include $(USPACE_PREFIX)/Makefile.common 56 51
Note:
See TracChangeset
for help on using the changeset viewer.