Changes in / [badbb9ad:c936c7f] in mainline
- Location:
- uspace/app/pcc/cc
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/cc/Makefile
rbadbb9ad rc936c7f 35 35 BINARY = cc 36 36 37 PRE_DEPEND = compat.c 38 EXTRA_CLEAN = compat.c 39 37 40 POSIX_COMPAT = y 38 39 40 41 41 42 SOURCES = \ 42 43 cc.c \ 43 $(MIPDIR)/compat.c44 compat.c 44 45 45 46 include $(USPACE_PREFIX)/Makefile.common 46 47 48 compat.c: $(MIPDIR)/compat.c 49 ln -s -f $^ $@ 50 -
uspace/app/pcc/cc/ccom/Makefile
rbadbb9ad rc936c7f 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 -
uspace/app/pcc/cc/ccom/mkext/Makefile
rbadbb9ad rc936c7f 37 37 POSIX_COMPAT = y 38 38 39 PRE_DEPEND = mkext.c table.c common.c 40 EXTRA_CLEAN = mkext.c table.c common.c 41 39 42 # FIXME: external.{c,h} must be generated for each target system 40 43 41 44 SOURCES = \ 42 ${MIPDIR}/mkext.c \43 $(MDIR)/table.c \44 ${MIPDIR}/common.c45 mkext.c \ 46 table.c \ 47 common.c 45 48 46 49 include $(USPACE_PREFIX)/Makefile.common 47 50 51 mkext.c: $(MIPDIR)/mkext.c 52 ln -s -f $^ $@ 53 54 table.c: $(MDIR)/table.c 55 ln -s -f $^ $@ 56 57 common.c: $(MIPDIR)/common.c 58 ln -s -f $^ $@ 59 -
uspace/app/pcc/cc/cpp/Makefile
rbadbb9ad rc936c7f 31 31 ARCHDIR = ../../arch/$(PLATFORM) 32 32 EXTRA_CFLAGS = -I$(MIPDIR) -I$(ARCHDIR) -w 33 EXTRA_CLEAN = y.tab.c y.tab.h34 33 DEFS = -DCPP_DEBUG -Dfree=free -DCPPBUF=16384 35 34 BINARY = cpp 35 36 PRE_DEPEND = compat.c 37 EXTRA_CLEAN = compat.c y.tab.c y.tab.h 36 38 37 39 POSIX_COMPAT = y … … 43 45 cpp.c \ 44 46 token.c \ 45 $(MIPDIR)/compat.c 47 compat.c 48 49 include $(USPACE_PREFIX)/Makefile.common 46 50 47 51 y.tab.c: 48 52 $(YACC) -d cpy.y 49 53 50 include $(USPACE_PREFIX)/Makefile.common 54 compat.c: $(MIPDIR)/compat.c 55 ln -s -f $^ $@ 51 56
Note:
See TracChangeset
for help on using the changeset viewer.