1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-02-03 15:22:53 +00:00
Files
rricharz.Tek4010/makefile
2021-07-12 21:31:58 -06:00

16 lines
291 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
.PHONY : clean
clean :
-rm -f tek4010