tests/genericmake/project_files/Makefile
branchwxPython4
changeset 3422 700b39cb4525
parent 3405 fdc12f7d27c8
parent 3416 53c66c4aefa3
child 3423 84afcc0ebadd
equal deleted inserted replaced
3405:fdc12f7d27c8 3422:700b39cb4525
     1 BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)
       
     2 
       
     3 all: warn some_binary
       
     4 	@echo "*** all done ***"
       
     5 
       
     6 warn:
       
     7 	@echo "*** Sample Makefile, does nothing ***"
       
     8 
       
     9 some_binary: $(BEREMIZ_OBJS)
       
    10 	@echo "* Would link $^ -> $@"
       
    11 
       
    12 %.o: %.c
       
    13 	@echo "* Would compile $< -> $@"