# Makefile for Diderot runtime code # SHELL = @SHELL@ CC = @CC@ @CFLAG_M64@ CFLAGS = @CFLAGS@ -DNDEBUG -DDIDEROT_SINGLE_PRECISION INCLUDE_PATHS = -I../include -I@TEEM_DIR@/include CPPFLAGS += $(INCLUDE_PATHS) C_SRCS = main.c diderot.c C_OBJS = $(addsuffix .o,$(basename $(notdir $(C_SRCS)))) .PHONY: build local-install \ clean distclean devclean local-install: build build: diderot-lib.o diderot-lib.o: $(C_OBJS) $(LD) -r -o diderot-lib.o $(C_OBJS) main.o: main.c ../include/Diderot/diderot.h $(CC) -c $(CFLAGS) $(CPPFLAGS) main.c diderot.o: diderot.c ../include/Diderot/diderot.h $(CC) -c $(CFLAGS) $(CPPFLAGS) diderot.c clean: rm -f $(C_OBJS) distclean: clean rm -f Makefile devclean: distclean
Click to toggle
does not end with </html> tag
does not end with </body> tag
The output has ended thus: (CPPFLAGS) diderot.c clean: rm -f $(C_OBJS) distclean: clean rm -f Makefile devclean: distclean