Root/makefiles/Makefile.basic

Source at commit e587d39d3de00ff5e40ec80b9683c9a32778f722 created 7 years 7 months ago.
By Werner Almesberger, atusb/usb.sch, atusb.pro: replace CONN_1 with TESTPOINT
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