summaryrefslogtreecommitdiff
path: root/main.mk
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:17:51 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:18:52 +0200
commit9e93944f18de5d7e38c15651df0235156d9c6d4e (patch)
treefc4f9b788698849e547bb2c1ec82ec7d2742fd83 /main.mk
parentd5577a84aadd0195a95b5b4d83e49b40af49425b (diff)
downloadsdcc-gas-9e93944f18de5d7e38c15651df0235156d9c6d4e.tar.gz
Removed intermediate files
Diffstat (limited to 'main.mk')
-rw-r--r--main.mk101
1 files changed, 0 insertions, 101 deletions
diff --git a/main.mk b/main.mk
deleted file mode 100644
index f20631e..0000000
--- a/main.mk
+++ /dev/null
@@ -1,101 +0,0 @@
-#
-#
-#
-
-# Version
-VERSION = 0.0.0
-VERSIONHI = 0
-VERSIONLO = 0
-VERSIONP = 0
-
-# Programs
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-RANLIB = ranlib
-INSTALL = /usr/bin/install -c
-AUTOCONF = autoconf
-
-# Directories
-PRJDIR = .
-
-prefix = /usr/local
-exec_prefix = ${prefix}
-bindir = ${exec_prefix}/bin
-libdir = ${exec_prefix}/lib
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-includedir = ${prefix}/include
-mandir = ${datarootdir}/man
-man1dir = $(mandir)/man1
-man2dir = $(mandir)/man2
-infodir = ${datarootdir}/info
-srcdir = .
-
-# Flags
-DEFS = $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H)
-CPPFLAGS = -I$(PRJDIR)
-CFLAGS = -pipe -ggdb -g -Og
-
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf
-
-
-# Compiling and installing everything and runing test
-# ---------------------------------------------------
-install: all installdirs
-
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
-
-
-# Creating dependencies
-# ---------------------
-dep:
-
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-.c.o:
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
-
-.y.c:
- rm -f $*.cc $*.h
- $(YACC) -d $<
- mv y.tab.c $*.cc
- mv y.tab.h $*.h
-
-.l.c:
- rm -f $*.cc
- $(LEX) -t $< >$*.cc
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(PRJDIR)/devel ]; then\
- $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" freshconf;\
- fi
-
-# End of main_in.mk/main.mk
-