all repos — conver-tool @ c648f9a820cc0ae109b4a6b63200d2ca96f4e84f

A command line tool to manage ConVer projects.

Makefile

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
CC     = gcc
CFLAGS = -std=c99 -Ivendor/stc/include -Wall -O2

SRCS   = src/conver.c
OBJS   = $(SRCS:.c=.o)

conver: $(OBJS)
	$(CC) -o $@ $^ -lm

clean:
	rm -f $(OBJS) conver conver.exe