Merge pull request #74 from lakinduakash/dev

Fix AUR pkgbuild
This commit is contained in:
Lakindu Akash 2020-10-09 01:52:18 +05:30 committed by GitHub
commit 824b70bfe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,10 +20,17 @@ BUILT_SRC = resources.c
_OBJ = main.o ui.o h_prop.o util.o read_config.o $(BUILT_SRC:.c=.o)
OBJ = $(patsubst %,$(ODIR)/%,$(_OBJ))
all: resources.c $(ODIR)/wihotspot-gui
# Determine this makefile's path.
# Be sure to place this BEFORE `include` directives, if any.
THIS_FILE := $(lastword $(MAKEFILE_LIST))
.PHONY: clean
all: resources.c
resources.c: ui/glade/wifih.gresource.xml ui/glade/wifih.ui
$(GLIB_COMPILE_RESOURCES) ui/glade/wifih.gresource.xml --target=ui/$@ --sourcedir=ui/glade --generate-source
@$(MAKE) -f $(THIS_FILE) wihotspot-gui
$(ODIR)/%.o: ui/%.c
$(CC) -c -o $@ $< $(CFLAGS)
@ -31,8 +38,8 @@ $(ODIR)/%.o: ui/%.c
$(ODIR)/%.o: ui/%.cpp
g++ -c -o $@ $<
$(ODIR)/wihotspot-gui: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
wihotspot-gui: $(OBJ)
$(CC) -o $(ODIR)/$@ $^ $(CFLAGS) $(LIBS)
install: $(ODIR)/wihotspot-gui
mkdir -p $(DESTDIR)$(APP_DIR)
@ -54,8 +61,6 @@ clean-old:
rm -f $(DESTDIR)/usr/bin/wihotspot_gui
rm -f $(DESTDIR)/usr/bin/wihotspot
.PHONY: clean
clean:
rm -f $(ODIR)/*.o
rm -f ui/$(BUILT_SRC)