Sha256: 3bf4d0be02615a691f4c2a68a74a19d6459d506ce455719d3dee333c4a1546fd
Contents?: true
Size: 148 Bytes
Versions: 11
Compression:
Stored size: 148 Bytes
Contents
CC=gcc CFLAGS=-Wall -ansi -pedantic OBJ=hello.o OUT=hello all: $(OUT) $(OUT): $(OBJ) $(CC) $(OBJ) -o $@ clean distclean: rm -f $(OBJ) $(OUT)
Version data entries
11 entries across 11 versions & 2 rubygems