From: Harvie Date: Mon, 1 Nov 2010 13:54:07 +0000 (+0100) Subject: ghettoss: Makefile produces .gitignore now X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;h=bab271112da9cb1c8dcc246221af5f313ec8d7b8;p=mirrors%2FPrograms.git ghettoss: Makefile produces .gitignore now --- diff --git a/c/ghetto-sound-system/Makefile b/c/ghetto-sound-system/Makefile index 71622c2..6e1cac8 100644 --- a/c/ghetto-sound-system/Makefile +++ b/c/ghetto-sound-system/Makefile @@ -8,12 +8,12 @@ alsa_CFLAGS+=-lasound .PHONY: all clean sdl alsa go all: sdl alsa + echo .gitignore $(sdl_BIN) $(alsa_BIN) | tr ' ' '\n' > .gitignore clean: - rm $(sdl_BIN) $(alsa_BIN) + rm .gitignore $(sdl_BIN) $(alsa_BIN) sdl: $(MAKE) CFLAGS+="$(sdl_CFLAGS)" $(sdl_BIN) - alsa: $(MAKE) CFLAGS="$(alsa_CFLAGS)" $(alsa_BIN)