Skip to content

Commit

Permalink
Fix AUR pkgbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
lakinduakash committed Oct 8, 2020
1 parent 1612534 commit 2ee2749
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,26 @@ 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)

$(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)
Expand All @@ -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)
Expand Down

0 comments on commit 2ee2749

Please sign in to comment.