mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-01-11 23:53:16 +00:00
12 lines
249 B
Makefile
12 lines
249 B
Makefile
LIBS = `pkg-config --libs gtk+-3.0`
|
|
|
|
CFLAGS = -std=c99 `pkg-config --cflags gtk+-3.0`
|
|
|
|
all: tek4010
|
|
|
|
tek4010: main.c main.h tube.c tube.h tek4010.c ards.c
|
|
gcc -o tek4010 main.c tube.c tek4010.c ards.c $(LIBS) $(CFLAGS)
|
|
|
|
install: tek4010
|
|
./install
|