all repos — conver-tool @ ddbb2902791eb80cfeddae59a5624a5a3e8d16c4

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