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

Version Path
ttk-0.1.576 test/ressources/ball/hello/Makefile
ttk-0.1.580 test/ressources/ball/hello/Makefile
ttk-0.2.0 test/ressources/ball/hello/Makefile
ttk-0.2.1 test/ressources/ball/hello/Makefile
ttk-0.1.579 test/ressources/ball/hello/Makefile
uttk-0.3.5.0 test/fixtures/ball/hello/Makefile
uttk-0.3.6.1 test/fixtures/ball/hello/Makefile
uttk-0.3.1.2 test/fixtures/ball/hello/Makefile
uttk-0.4.6.1 test/fixtures/ball/hello/Makefile
uttk-0.4.6.2 test/fixtures/ball/hello/Makefile
uttk-0.4.5.0 test/fixtures/ball/hello/Makefile