Advertisement
Guest User

Untitled

a guest
Oct 19th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. CC=xc8
  3. OUTPUT=--outdir=build -o=text.hex
  4. FLAGS_END=
  5. FLAGS_CUSTOM=   --chip=18F46J50 \
  6.                                                 -Ied/hexa_sen1.1 \
  7.                                                 -Ied/hexa_sen1.1/ds18b20 \
  8.                                                 -Ied/hexa_sen1.1/edid_config \
  9.                                                 -Ied/hexa_sen1.1/hw_layer \
  10.                                                 -Ied/hexa_sen1.1/senact \
  11.                                                 -Ied/hexa_sen1.1/sht21lib \
  12.                                                 -Ied/hexa_sen1.1/spieeprom \
  13.                                                 -Ied/hexa_sen1.1/vibra \
  14.                                                 -Ilib/fitp \
  15.                                                 -Ilib/fitp/common/log \
  16.                                                 -Ilib/fitp/common/net_layer \
  17.                                                 -Ilib/fitp/common/phy_layer \
  18.                                                 -Ilib/fitp/ed/fitp \
  19.                                                 -Ilib/fitp/ed/global_storage \
  20.                                                 -Ilib/fitp/ed/link_layer \
  21.                                                 -Ilib/fitp/ed/net_layer \
  22.                                                 -Ilib/fitp/ed/phy_layer \
  23.                                                 -I/opt/microchip/xc8/v1.35/include/plib
  24.  
  25. SOURCE_FILES=   ed/main-hexa_sen1.1.c \
  26.                                                 ed/hexa_sen1.1/ds18b20/ds18b20.c \
  27.                                                 ed/hexa_sen1.1/edid_config/edid_config.c \
  28.                                                 ed/hexa_sen1.1/hw_layer/hw.c \
  29.                                                 ed/hexa_sen1.1/senact/senact.c \
  30.                                                 ed/hexa_sen1.1/sht21lib/sht21lib.c \
  31.                                                 ed/hexa_sen1.1/spieeprom/spieeprom.c \
  32.                                                 ed/hexa_sen1.1/vibra/vibra.c \
  33.                                                 lib/fitp/common/log/log.c \
  34.                                                 lib/fitp/ed/fitp/fitp.c \
  35.                                                 lib/fitp/ed/global_storage/global.c \
  36.                                                 lib/fitp/ed/link_layer/link.c \
  37.                                                 lib/fitp/ed/net_layer/net.c \
  38.                                                 lib/fitp/ed/phy_layer/phy.c
  39.  
  40.  
  41. all:
  42.         $(CC) $(FLAGS_CUSTOM) $(SOURCE_FILES) $(OUTPUT) $(FLAGS_END)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement