tests/genericmake/project_files/Makefile
changeset 1387 435965ca8b63
child 1542 0535a6b50534
equal deleted inserted replaced
1386:31c63a6248e1 1387:435965ca8b63
       
     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 $< -> $@"