diff options
author | Teddy Wing | 2018-10-29 18:43:12 +0100 |
---|---|---|
committer | Teddy Wing | 2018-10-29 18:43:12 +0100 |
commit | 12c83c5f8a12f621a6dc4d49cb14c4a919685e62 (patch) | |
tree | d97f236b45097cc7833607b2c71213bd4a4ea0e1 /Makefile | |
parent | bdc68a7f797cf9a33175cc1510215d609af2afad (diff) | |
download | DomeKey-12c83c5f8a12f621a6dc4d49cb14c4a919685e62.tar.bz2 |
Rename `sounds.h` to `sound_data.h`
I want to make a Cocoa class called `Sounds`, but `Sounds.h` would
conflict with this file.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 */' >> $@ |