diff options
author | TheJackiMonster <thejackimonster@gmail.com> | 2021-11-01 21:31:26 +0100 |
---|---|---|
committer | TheJackiMonster <thejackimonster@gmail.com> | 2021-11-01 21:31:26 +0100 |
commit | e17fc4e572c37a421337362d52832aca75796182 (patch) | |
tree | 6482de3d299aaf501b3d2f41a1e70f02ff69ac9f | |
parent | 21eff6c7c215672d9d0fedd68bc1ca3c3eb4762f (diff) | |
download | messenger-gtk-e17fc4e572c37a421337362d52832aca75796182.tar.gz messenger-gtk-e17fc4e572c37a421337362d52832aca75796182.zip |
Added mobile target to makefile for debugging
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -46,6 +46,11 @@ release: $(BINARY) | |||
46 | $(BINARY): $(OBJECT_FILES) | 46 | $(BINARY): $(OBJECT_FILES) |
47 | $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS) $(PACKAGE_FLAGS) | 47 | $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS) $(PACKAGE_FLAGS) |
48 | 48 | ||
49 | .PHONY: mobile | ||
50 | |||
51 | mobile: $(BINARY) | ||
52 | ./$(BINARY) --mobile | ||
53 | |||
49 | .PHONY: install | 54 | .PHONY: install |
50 | 55 | ||
51 | install: | 56 | install: |