Adjusted Makefile and svn:ignore for signal/.
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Fri, 10 Dec 2010 06:26:29 +0000 (06:26 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Fri, 10 Dec 2010 06:26:29 +0000 (06:26 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@486 546481bc-9713-0410-bf18-d3337bbf4a3e

Makefile

index bfa74c69d0aa340800056427a2080da0b7fc78ec..266558f2ab7408cda917e391b77f53be9df76bcc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,12 +29,15 @@ REGDEPFILES := $(patsubst %,%.d,$(REGFILES))
 # All files belonging to the source distribution
 ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES)
 
+# TODO: This must be possible without four discrete steps.
 # All files in platform/$(PLATFORM)/functions/_PDCLIB (for development only)
 PATCHFILES1 := $(shell ls platform/$(PLATFORM)/functions/_PDCLIB/*.c)
 # All files in platform/$(PLATFORM)/functions/stdlib (for development only)
 PATCHFILES2 := $(shell ls platform/$(PLATFORM)/functions/stdlib/*.c)
 # All files in platform/$(PLATFORM)/functions/stdio (for development only)
 PATCHFILES3 := $(shell ls platform/$(PLATFORM)/functions/stdio/*.c)
+# All files in platform/$(PLATFORM)/functions/signal (for development only)
+PATCHFILES4 := $(shell ls platform/$(PLATFORM)/functions/signal/*.c)
 
 WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -fno-builtin 
 CFLAGS := -g -std=c99 -I./internals -I./testing $(WARNINGS) $(USERFLAGS)
@@ -100,6 +103,7 @@ links:
        @cd functions/_PDCLIB && for file in $(PATCHFILES1); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done
        @cd functions/stdlib && for file in $(PATCHFILES2); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done
        @cd functions/stdio && for file in $(PATCHFILES3); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done
+       @cd functions/signal && for file in $(PATCHFILES4); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done
 
 unlink:
        @echo "Unlinking platform files..."