comparison Makefile @ 2:712c7fd6702a

Remove a LOT of unneeded stuff
author Paper <mrpapersonic@gmail.com>
date Sun, 07 Aug 2022 10:41:55 -0400
parents 7abb5d8b20ea
children be4835547dd0
comparison
equal deleted inserted replaced
1:7abb5d8b20ea 2:712c7fd6702a
22 22
23 src/%.o: src/%.c $(DEPS) 23 src/%.o: src/%.c $(DEPS)
24 gcc -c $(CFLAGS) $< -o $@ 24 gcc -c $(CFLAGS) $< -o $@
25 25
26 clean: 26 clean:
27 rm -f src/*.o *.dll 27 find . -type f -name '*.o' -not -path "./discord_game_sdk/*" -delete
28 find . -type f -name '*.dll' -not -path "./discord_game_sdk/*" -delete