UNPKG

espresso-logic-minimizer

Version:

A NodeJS bridge to the Espresso heuristic logic minimizer

20 lines (12 loc) 248 B
SRC := $(wildcard *.c) OBJ := ${SRC:.c=.o} TARGETDIR := ../bin TARGET := $(TARGETDIR)/espresso all: prepare $(TARGET) prepare: mkdir $(TARGETDIR) $(TARGET): $(OBJ) $(LINK.c) $(OBJ) -o $(TARGET) clean: @- $(RM) $(TARGET) @- $(RM) $(OBJ)