diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-21 17:53:22 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-21 17:53:22 -0500 |
| commit | 460093026a28744acf24cd176f83674d5ead63eb (patch) | |
| tree | a66c9406a0cd45176713305eb9d45d31e4c0b828 /Makefile | |
| parent | e9ebb8126224353c7090889c38e49415497a53cd (diff) | |
| download | soen422-460093026a28744acf24cd176f83674d5ead63eb.zip | |
server dashboard: display duty cycle
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,10 +14,10 @@ UPLOADFLAGS = -p ${PORT} ${CFLAGS} all: SensorStation/build HvacStation/build server/server server/server: ${SERVER_SRC} - go build -o $@ $^ + go build -o $@ ./server fmt: ${SERVER_SRC} - gofmt -l -s -w $^ + gofmt -l -s -w ./server release: GOOS=${RELEASE_GOOS} GOARCH=${RELEASE_GOARCH} go build -o server/server ${SERVER_SRC} |