forked from oxnz/shell-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (43 loc) · 1.22 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#===============================================================================
#
# Filename: Makefile
# Description: Makefile for building [PROJECT]
#
# Synopsis: make generate executable
# make TARGET makes the given target
# make clean remove objects, executable, prerequisits
# make tarball generate compressed archive
#
# Version: 1.0
# Created: [TIME]
# Revision: ---
#
# Author: [AUTHOR]
# Company:
# Email: [EMAIL]
#
# Notes: This is a GNU make (gmake) makefile.
#========================================= [Makefile Template Version 1.8] =====
include Makefile.inc
# BUILD can be set to DEBUG to include debugging info, or RELEASE otherwise
BUILD := RELEASE
# PROFILE can be set to YES to include profiling info, or NO otherwise
PROFILE := NO
DIRS = lib core ext custom
SOURCES = core/utils.core \
ext/utils.ext \
lib/utils.lib \
custom/utils.custom \
RCFILES = var/obj/bashrc \
var/obj/bash_profile \
var/obj/profile \
var/obj/zshrc \
var/obj/zprofile \
all:
sh.utils:
@echo $(MFLAGS)
#$(CAT) $(CATFLAGS) $^ > $@
clean:
$(RM) $(TARGET) $(TESTS)
tarball:
.PHONY: clean tarball