summaryrefslogblamecommitdiff
path: root/3rdparty/mt19937ar/Makefile.in
blob: 61f0556beda96f39caff2f5dd791321623c2f12c (plain) (tree)
1
2
3
4
5
6
7
8

                                                          





                           


         
                                                                     
                                 


                     

                                                     
                   
 


                                  
     



                                                                      


                                                                     



                                                     
                       
                           
                                                         
# Copyright (c) Hercules Dev Team, licensed under GNU GPL.
# See the LICENSE file

MT19937AR_OBJ = mt19937ar.o
MT19937AR_H = mt19937ar.h

@SET_MAKE@

CC = @CC@
export CC

#####################################################################
.PHONY: all clean buildclean help

all: $(MT19937AR_OBJ)

buildclean:
	@echo "	CLEAN	mt19937ar (build temp files)"
	@rm -rf *.o

clean: buildclean
	@echo "	CLEAN	mt19937ar"

help:
	@echo "possible targets are 'all' 'clean' 'buildclean' 'help'"
	@echo "'all'                 - builds $(MT19937AR_OBJ)"
	@echo "'clean', 'buildclean' - deletes $(MT19937AR_OBJ)"
	@echo "'help'                - outputs this message"

#####################################################################

Makefile: Makefile.in
	@$(MAKE) -C ../.. 3rdparty/mt19937ar/Makefile

%.o: %.c $(LIBCONFIG_H) Makefile
%.o: %.c $(MT19937AR_H)
	@echo "	CC	$<"
	@$(CC) @CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<