Reflow oven controller firmware
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
576 B

# Makefile
VPATH = ..
OBJECTS.test-menu = test-menu.o test-display.o menu.o test-therm.o config.o
OBJECTS.test-graphics = test-graphics.o menu.o test-i2c.o display.o test-therm.o config.o font.o fields.o profile.o control.o
CFLAGS = -Wall -Werror -Os -I. -I..
LDLIBS = -lncurses
CFLAGS+=`pkg-config --cflags sdl SDL_gfx`
LDLIBS+=`pkg-config --libs sdl SDL_gfx`
LDLIBS+=-lm
#all: test-menu test-graphics
all: test-graphics
test-menu: $(OBJECTS.test-menu)
test-graphics: $(OBJECTS.test-graphics)
clean:
rm -f test-menu $(OBJECTS.test-menu) $(OBJECTS.test-graphics)