X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=aoview%2FMakefile;h=ca636065a37c6e4c58c012c645855f6fc0bb3d3b;hb=4d83eef0fe1d24a845ab29a535dfc56e13e7ee20;hp=8f9c08df1e355730155936b7b79b561cb1cfe8a5;hpb=26361686d6fc63dc22d22285f0543c5c2c756fb4;p=fw%2Faltos diff --git a/aoview/Makefile b/aoview/Makefile index 8f9c08df..ca636065 100644 --- a/aoview/Makefile +++ b/aoview/Makefile @@ -5,6 +5,8 @@ WARN= -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wnested CFLAGS=$(INCLUDES) -O0 -g $(WARN) -DAOVIEW_VERSION='"$(VERSION)"' LIBS=$(shell pkg-config --libs $(MODULES)) -lm +BIN=/usr/local/bin + SRC = \ aoview_main.c \ aoview_dev.c \ @@ -15,7 +17,8 @@ SRC = \ aoview_convert.c \ aoview_log.c \ aoview_table.c \ - aoview_util.c + aoview_util.c \ + aoview_file.c INC = \ aoview.h @@ -30,5 +33,15 @@ $(PROG): $(OBJ) $(OBJ): $(INC) +aoview_main.o: aoview_glade.h + clean: rm -f $(OBJ) $(PROG) + +install: $(BIN)/aoview + +$(BIN)/aoview: aoview + install aoview $(BIN) + +aoview_glade.h: aoview.glade + sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/"/' $< > $@