Replaced (now obsolete) PROCESS_LOADABLE with SELFSTART_PROCESS.

This commit is contained in:
oliverschmidt 2008-02-07 16:34:18 +00:00
parent 0a8f384a40
commit 806f79bb03

View file

@ -30,7 +30,7 @@
#
# Author: Oliver Schmidt <ol.sc@web.de>
#
# $Id: Makefile.win32,v 1.11 2007/12/15 00:00:34 oliverschmidt Exp $
# $Id: Makefile.win32,v 1.12 2008/02/07 16:34:18 oliverschmidt Exp $
#
ifndef CONTIKI
@ -75,7 +75,7 @@ ${foreach DSC,$(DSCS),${eval ${call dsc_template,$(DSC),${call appname,$(DSC)}}}
### (The *.d files contain the full module-compile prerequisites)
${sort ${foreach PRG,$(PRGS), ${addprefix $(OBJECTDIR)/, \
$(${call appname,$(PRG)_src:.c=.o})}}}:
$(CC) $(CFLAGS) -DAUTOSTART_ENABLE -D_USRDLL -DPROCESS_LOADABLE -c $< -o $@
$(CC) $(CFLAGS) -DAUTOSTART_ENABLE -DSELFSTART_PROCESS -D_USRDLL -c $< -o $@
$(PRGS:=.prg):
$(LD) -shared $^ contiki-main.$(TARGET).a -o $@
$(DSCS:=.dsc):