]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fix makefile to allow make of overlays.ui
authormarshmellow42 <marshmellowrf@gmail.com>
Wed, 19 Apr 2017 03:41:38 +0000 (23:41 -0400)
committermarshmellow42 <marshmellowrf@gmail.com>
Wed, 19 Apr 2017 03:41:38 +0000 (23:41 -0400)
to ui_overlays.h
add ui_overlays.h to .gitignore
should now compile to whatever qt version you have. (as long as it is
compatible with the overlays.ui file...)

.gitignore
client/Makefile

index d08c67b867ba0eab2167cec78f9ce5272fc9bce0..d41f7c1d3f0b1f253b7e5eb31ce121036b77235a 100644 (file)
@@ -15,6 +15,7 @@
 *.moc.cpp
 *.z
 version.c
 *.moc.cpp
 *.z
 version.c
+ui_overlays.h
 
 *.exe
 proxmark3
 
 *.exe
 proxmark3
index 826976126657f6daa5ea346a668e28621f651284..ee2a25c0d3b780c1bdbc3758cc1c571930acafee 100644 (file)
@@ -162,10 +162,10 @@ ZLIBOBJS = $(ZLIBSRCS:%.c=$(OBJDIR)/%.o)
 
 BINS = proxmark3 flasher fpga_compress
 WINBINS = $(patsubst %, %.exe, $(BINS))
 
 BINS = proxmark3 flasher fpga_compress
 WINBINS = $(patsubst %, %.exe, $(BINS))
-CLEAN = $(BINS) $(WINBINS) $(COREOBJS) $(CMDOBJS) $(ZLIBOBJS) $(QTGUIOBJS) $(OBJDIR)/*.o *.moc.cpp 
-#./ui/ui_overlays.h
+CLEAN = $(BINS) $(WINBINS) $(COREOBJS) $(CMDOBJS) $(ZLIBOBJS) $(QTGUIOBJS) $(OBJDIR)/*.o *.moc.cpp ui/ui_overlays.h
 
 
-all: lua_build $(BINS)
+# need to assign dependancies to build these first...
+all: ui/ui_overlays.h lua_build $(BINS)
 
 all-static: LDLIBS:=-static $(LDLIBS)
 all-static: proxmark3 flasher fpga_compress
 
 all-static: LDLIBS:=-static $(LDLIBS)
 all-static: proxmark3 flasher fpga_compress
@@ -183,9 +183,8 @@ fpga_compress: $(OBJDIR)/fpga_compress.o $(ZLIBOBJS)
 proxguiqt.moc.cpp: proxguiqt.h
        $(MOC) -o$@ $^
 
 proxguiqt.moc.cpp: proxguiqt.h
        $(MOC) -o$@ $^
 
-#cannot seem to get this to work accross qt versions...
-#ui/ui_overlays.h: ./ui/overlays.ui
-#      $(UIC) $^ > $@
+ui/ui_overlays.h: ui/overlays.ui
+       $(UIC) $^ > $@
 
 lualibs/usb_cmd.lua: ../include/usb_cmd.h
        awk -f usb_cmd_h2lua.awk $^ > $@
 
 lualibs/usb_cmd.lua: ../include/usb_cmd.h
        awk -f usb_cmd_h2lua.awk $^ > $@
Impressum, Datenschutz