Root/makefiles/Makefile.basic

Source at commit 03ee256a3b1a774e72bc79a65e02e62a56fc62dd created 7 years 3 months ago.
By Stefan Schmidt, web: add 0.3 firmware binaries into release folder for web page
1#
2# Makefile.basic - Basic makefile for single-executable builds
3#
4# Written 2008, 2011 by Werner Almesberger
5# Copyright 2008, 2011 Werner Almesberger
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12
13
14INSTALL_PREFIX = /usr/local
15
16CFLAGS = -Wall
17LDFLAGS =
18LDLIBS =
19
20.PHONY: all install uninstall clean spotless
21
22all: $(MAIN)
23
24$(MAIN): $(MAIN).o $(OBJS)
25        $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(MAIN).o $(OBJS) $(LDLIBS)
26
27install: $(MAIN)
28        install $(MAIN) $(INSTALL_PREFIX)/bin/
29
30uninstall:
31        rm -f $(INSTALL_PREFIX)/bin/$(MAIN)
32
33clean::
34        rm -f $(MAIN).o $(OBJS)
35
36spotless: clean
37        rm -f $(MAIN)
38

Archive Download this file



interactive