
WRITEABLE= file_writable
$(WRITEABLE)::	$(WRITEABLE).c
	$(CC) $(CFLAGS) $(WRITEABLE).c -o $(WRITEABLE)
	
install::
		$(STRIP) $(DYLD_APP_STRIP_OPTS) $(DSTROOT)$(INSTALLDIR)/$(NAME).app/$(WRITEABLE); 

.SUFFIXES: .strings


.h.strings:
	if [ "$*" = "Localization" ]; then \
		/usr/bin/genstrings  $*.h > English.lproj/$*.strings; \
	else \
		/usr/bin/genstrings -o English.lproj $*.h;  \
	fi


clean::
	rm English.lproj/*.strings
	