2 Commits e5a9f1fa54 ... 0255734665

Autor SHA1 Mensaje Fecha
  blackwine 0255734665 becoming a party pig hace 2 meses
  blackwine e5a9f1fa54 becoming a party pig hace 2 meses
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      Makefile

+ 7 - 1
Makefile

@@ -1,15 +1,21 @@
 service=bar
+at_osc=@osc
+
 os=linux
 arch=amd64
 dir_guard=@mkdir -p $(@D)
 party_host=xuj.local
 exec=/usr/local/bin/$(service)
 
-all: $(service)
+all: $(service) $(at_osc)
 
 $(service): $(wildcard **.go)
 	go build .
 
+$(at_osc): $(wildcard at-osc/**.go)
+	go build -o "$(at_osc)" ./at-osc
+
+
 run: $(service)
 	./$(service)