1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-02-08 17:31:23 +00:00
Files
rricharz.Tek4010/RPi5/makefile
2024-02-26 10:28:18 +01:00

15 lines
302 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
$(CC) -o ../tek4010 main.c tube.c tek4010.c ards.c $(LIBS) $(CFLAGS)
install: ../tek4010
./install
clean : ../tek4010
-rm -f ../tek4010