all repos — hex @ d59f0ac31153ad70f0f6db16ca843be8919a6482

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Makefile

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
# Default Compiler and Flags
CC ?= gcc
CFLAGS ?= -Wall -Wextra -g
LDFLAGS ?=

hex: hex.c
	$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@

.PHONY: clean, test, debug-test
clean:
	rm hex
test:
	./hex tests.hex
debug-test:
	./hex -d tests.hex