X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=89a1d9e72fb3f5c15ac1d4f3da20affbc30e0afa;hb=0cd903b82201176f3148f6d18d68fd30b82746d5;hp=fa2976a2f48bf87c80f064751cbdcaf3ccf4ea26;hpb=835321468ef83d421cd0f70f4fcbdea51b2776b9;p=pdclib diff --git a/Makefile b/Makefile index fa2976a..89a1d9e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,3 @@ -# $Id$ - # This is where you chose which platform to compile for (see 'make links' / './platform') PLATFORM := example @@ -87,11 +85,13 @@ find: links: @echo "Linking platform/$(PLATFORM)..." + @if [ ! -d functions/signal ]; then mkdir functions/signal; fi @for file in $$(find platform/$(PLATFORM) -mindepth 2 -type f ! -path *.svn* -printf "%P\n"); do ln -s $$(dirname $$file | sed "s@[^/]*@..@g")/platform/$(PLATFORM)/$$file $$file; done unlink: @echo "Unlinking platform files..." @for dir in $(PROJDIRS); do find $$dir -type l -exec rm {} +; done + @rmdir functions/signal help: @echo "Available make targets:" @@ -127,5 +127,4 @@ help: %_r: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -MMD -MP -DTEST -DREGTEST $< -o $@ - + @$(CC) $(CFLAGS) -Wno-deprecated-declarations -Wno-format -MMD -MP -DTEST -DREGTEST $< -o $@