SCM Repository
View of /branches/pure-cfg/src/lib/Makefile.in
Parent Directory
|
Revision Log
Revision 757 -
(download)
(annotate)
Thu Apr 7 15:25:12 2011 UTC (11 years, 1 month ago) by jhr
File size: 682 byte(s)
Thu Apr 7 15:25:12 2011 UTC (11 years, 1 month ago) by jhr
File size: 682 byte(s)
Update INSTALL instructions
# Makefile for Diderot runtime code # SHELL = @SHELL@ CC = @CC@ CFLAGS = @CFLAGS@ -NDEBUG 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
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |