diff options
| author | Martin Arver <martin.arver@gmail.com> | 2006-12-11 21:01:14 +0000 |
|---|---|---|
| committer | Martin Arver <martin.arver@gmail.com> | 2006-12-11 21:01:14 +0000 |
| commit | 7d820556e95ce8837eaa5baf2f6b5215a4b129ce (patch) | |
| tree | 686899f7652fcd3c43c321ca53d99bbdfca42847 /apps/codecs/dumb/make/djgpp.inc | |
| parent | 440513ab6a51c5cc311ce8671180970279e4eaf9 (diff) | |
| download | rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.zip rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.gz rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.bz2 rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.xz | |
Remove the files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11719 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/dumb/make/djgpp.inc')
| -rw-r--r-- | apps/codecs/dumb/make/djgpp.inc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/apps/codecs/dumb/make/djgpp.inc b/apps/codecs/dumb/make/djgpp.inc deleted file mode 100644 index 4147ab2..0000000 --- a/apps/codecs/dumb/make/djgpp.inc +++ /dev/null @@ -1,28 +0,0 @@ -# This file contains DJGPP-specific definitions. It will be included by the -# main Makefile when you compile with DJGPP. - -PLATFORM := djgpp - -APOST := \' - -# Macro for replacing / with \ where necessary. Usage: $(call FIX,path) -FIX = $(subst /,\,$(subst /*,\\\*,$(1))) - -ECHO = @$(COMSPEC) /C ECHO $(1) -# Note: the following two macros only work for single files! -DELETE = $(COMSPEC) /C DEL $(call FIX,$(1)) -COPY = $(COMSPEC) /C COPY $(call FIX,$(1)) $(call FIX,$(2)) - -EXE_SUFFIX := .exe - -LINK_MATH := -LINK_ALLEGRO := -lalleg - -ifndef DJDIR -.PHONY: error -error: - $(call ECHO,Your DJDIR environment variable is not set!) - $(call ECHO,Please refer to DJGPP's documentation and install it properly.) -endif - -PREFIX := $(DJDIR) |