From 12c83c5f8a12f621a6dc4d49cb14c4a919685e62 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 29 Oct 2018 18:43:12 +0100 Subject: Rename `sounds.h` to `sound_data.h` I want to make a Cocoa class called `Sounds`, but `Sounds.h` would conflict with this file. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0955ce3..4f4868e 100644 --- a/Makefile +++ b/Makefile @@ -29,11 +29,11 @@ clean: run: build $(DEBUG_PRODUCT) --daemon -DomeKey/sounds.h: sounds/*.mp3 +DomeKey/sound_data.h: sounds/*.mp3 : > $@ - echo '#ifndef SOUNDS_H' >> $@ - echo '#define SOUNDS_H' >> $@ + echo '#ifndef SOUND_DATA_H' >> $@ + echo '#define SOUND_DATA_H' >> $@ echo >> $@ $(foreach f,$^,xxd -include $(f) >> $@;) echo >> $@ - echo '#endif /* SOUNDS_H */' >> $@ + echo '#endif /* SOUND_DATA_H */' >> $@ -- cgit v1.2.3